Article Topic Learning Download Q&A Programming Dictionary Game Recent Updates
LOGIN
简体中文(ZH-CN) English(EN) 繁体中文(ZH-TW) 日本語(JA) 한국어(KO) Melayu(MS) Français(FR) Deutsch(DE)

  • Popular searches:
  • PHP
  • MySQL
  • jquery
  • HTML
  • CSS
  • Whole station
  • Course
  • Article
  • Q&A
Found a total of 1453 related content
Get started with namespaces in 30 minutes

Course27571

Course Introduction:Namespace is the soul of modern PHP development framework, and mastering namespace is the most basic requirement for learning framework development. This course uses extremely straightforward language to allow everyone to quickly master the core knowledge of namespaces in the shortest possible time.

MySQL data management backup and recovery case analysis video tutorial

Course10278

Course Introduction:"MySQL Data Management Backup and Recovery Case Analysis Video Tutorial" MySQL is an open source small-scale relational database management system. Currently, MySQL is widely used in small and medium-sized websites on the Internet. Due to its small size, fast speed, low total cost of ownership, and especially the characteristics of open source, many small and medium-sized websites choose MySQL as their website database in order to reduce the total cost of website ownership.

Front-end Vue3 actual combat [handwritten vue project]

Course2857

Course Introduction:Course introduction: 1. Cross-domain processing, token management, route interception; 2. Real interface debugging, API layer encapsulation; 3. Secondary encapsulation of Echarts and paging components; 4. Vue packaging optimization and answers to common problems.

APIPOST tutorial [Popularization of technical concepts related to network communication]

Course1795

Course Introduction:Apipost is an API R&D collaboration platform that integrates API design, API debugging, API documentation, and automated testing. It supports grpc, http, websocket, socketio, and socketjs type interface debugging, and supports privatized deployment. Before formally learning ApiPost, you must understand some related concepts, development models, and professional terminology. Apipost official website: https://www.apipost.cn

Issue 22_Comprehensive actual combat

Course5521

Course Introduction:(Consult WeChat: phpcn01) The comprehensive practical course aims to consolidate the learning results of the first two stages, achieve flexible application of front-end and PHP core knowledge points, complete your own projects through practical training, and provide guidance on online implementation. Comprehensive practical key practical courses include: social e-commerce system backend development, product management, payment/order management, customer management, distribution/coupon system design, the entire WeChat/Alipay payment process, Alibaba Cloud/Pagoda operation and maintenance, and project online operation. .....

More courses
  • PHP trim unicode spaces

    I'm trying to trim unicode spaces such as this character and I was able to do it using this solution. The problem with this solution is that it does not trim unicode spaces between normal characters. For example, this uses thin space $string=" test test string ";echopreg_replace('/^[\pZ\pC]+|[\pZ\pC]+$/u','',$string);//outputs:test str

    2023-11-13 08:49:45 0 2 398

  • How can I set the height of an outer div to always be equal to the height of a specific inner div?

    I have an outer div that contains three inner divs. I want the leftmost inner div to always determine the height of the outer div. If the other inner divs have less content [than the leftmost div], they will have empty space. If they have more content [than the leftmost div], they will get a scrollbar. Some other questions on SO ask how to set the height of an outer div to the height of an inner div. However, in my case, I have multiple inner divs, and I don't know if the height of the outer div is greater or less than the height of the leftmost div. have what

    2023-11-07 13:59:30 0 2 314

  • How to make API call in created hook in Vue 3?

    Returning to vue after a long break. In my solution I'm using composition api and after creating the component I need to get some data so I can display it later. In my current solution, the template is rendered before calling. Probably stupid mistake but I still can't figure it out (it's clear in vue2.0 - create() hook).