Category: PHP
-
Post Views: 18 1. Composer installs Workerman successfully. as shown in Figure 1 2. The Linux system can use the following script to test whether the local PHP environment meets the workerman operation requirements. curl-sshttp://www.workerman.net/check.php| PHP. All display OK, it means that the Workerman requirements are met. as shown in Figure 2 3. Refer to the implementation of colleagues, edit…
-
Post Views: 19 1. Execute the command line in Windows 10 and report an error: Call to undefined function App\Console\Commands\POSIX_Getpid(). as shown in Figure 1 2. Reference URL:https://www.php.net/manual/zh/intro.posix.php. This extension is not available on Windows platforms. You can also try using getMyPid() instead. as shown in Figure 2 3. POSIX_GETPID — Returns the current process ID. Decide to replace with:…
-
Post Views: 21 1. In Yii 2.0, create a primary key column based on database migration. $this->primaryKey() is used by default. The created primary key column is int(11) by default. as shown in Figure 1 2. Some colleagues plan to create a primary key column of type VARCHAR(32). as shown in Figure 2 3. Method primaryKey() only supports passing in…
-
Post Views: 19 1. In the channel release, an error is reported: sqlstate[01000]: Warning: 1265 data truncatedPUB_LOG_CODEat row 1. as shown in Figure 1 2. SQL error, the root is the table: cpa_pre_pub_log field: pub_log_code type: int(11), but the inserted value is a string: 42s22. as shown in Figure 2 3. Value: 42s22 is taken from: $e->getCode(). as shown in…
-
Post Views: 16 1. Reference URL:https://www.shuijingwanwq.com/2021/08/10/5155/. In PHP, the size of the file is detected based on the HTTP protocol (that is, the size of the remote file is obtained without downloading the file), the previous implementation, using the file system function fopen – open the file or the URL. If the URL of the file requires a 301 jump,…
-
Post Views: 21 1. In the process of realizing the channel release, there is a situation where the files to be uploaded to the channel are too large, which leads to the failure of the upload. For example, Douyin, which is temporarily limited to 128 MB. as shown in Figure 1 2. However, the implementation logic at this stage is…
-
Post Views: 14 1. When requesting the WeChat interface, the return code: 45028, the returned English information: Has No Massend Quota Rid: 6103DF2E-1505BA73-0EB14E1C. as shown in Figure 1 2. The code is implemented as follows 3. The plan to convert the error message: Has No Masssend Quota Rid: 6103DF2E-1505BA73-0EB14E1C is translated as: no group quota. Rid: 6103DF2E-1505BA73-0EB14E1C. as shown in…
-
Post Views: 16 1. Error in Yii2 queue extension: The process “/usr/local/php/bin/php/mcloud/www/ccp_api/yiipub-article-queue/exec10330013555–color=Exceeded the timeout of 300 seconds. 2. In the queue: pub-article-queue running time exceeds the timeout time limit of 300 seconds. View queue: pub-article-queue configuration items. Maximum time for job processing, in seconds, with a value equal to 300 seconds. 3. Analyze the code, initially suspect that there is…