php has installed the xdebug module. The php.ini configuration is as follows: [XDebug] xdebug.profiler_output_dir= "D:phpStudytmpxdebug " xdebug.trace_output_dir= "D:phpStudytmpxdebug " xdebug.profiler_enable = 1 xdebug.auto_trace=on xdebug.coll...
to ask a question, (MySQL) table A has code_name,code_id,code_field at the end, and table B of another table has many attributes, such as nationality, place of origin, and so on. The nationality subquery method is select code_name form A table where cod...
what is the background of the form form blank line in the html file of phpstorm how to get rid of it ...
install docker in vmware install lnmp environment in docker how to use phpstorm debug has been unsuccessful for a long time as to why installing such an arduous environment is because there are so many holes in windows installing docker, we use vmwar...
is an API route as follows: <?php use Illuminate Http Request; $api = app( Dingo Api Routing Router ); $api->version( v1 , [ namespace => App Http Controllers Api ], function($api) { $api->post( verif...
recently, I have done a lot of financial projects and found that sometimes there are always some small loopholes, leading to data confusion, such as calculating dividends and credits for users according to certain rules. If the calculation is wrong, the...
problem description perform laravel scheduled tasks under the pagoda, and perform schedule:run tasks once a day the environmental background of the problems and what methods you have tried related codes Please paste the code text below (do n...
how can the data shown in the following figure be stored in the mysql database? 45: how do I store the classification and group information of trademarks? And the receptionist can conduct multiple queries (multi-conditional search)? what I ve come...
how to permanently modify php-fpm to specify the loaded php.ini path, I use usr local php sbin php-fpm-y usr local php etc php-fpm.conf-c usr local php etc php.ini after restarting systemctl restart php-fpm.service, the Loaded Configuration F...
my code: $ffmpeg = FFMpeg FFMpeg::create(); $video = $ffmpeg->open($save_path . www.flv ); $format = new FFMpeg Format Video X264(); $video->save($format, $save_path . test.mp4 ); report error during execution: line 106 of Encoding fa...
Server environment: Ali Cloud centos7.4 nginx1.14 php7.2 mysql5.7 there is no problem for the project to run locally and load quickly, but after deployment to the server, access to the web project on the server, when the browser clears the cache, some...
problem description when installing the pcntl extension, there was an error when installing make, as shown in figure . ...
the PHP7,phpinfo installed by source code compilation shows that the path to php.ini is in Configuration File (php.ini) Path usr local php etc so I cp php.ini-production usr local php etc php.ini from the source code, but no matter how I modify...
prompt when using mysql to create a database: Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. You have to change some columns to TEXT or BLOBs. means that the field is too large. Use the text or blobs ty...
Hello, would you like to ask, nearly a hundred Excel tables of different styles are imported into the solution to obtain data? Is there a boss who can give me some advice? I happen to have been dealing with this problem for a long time ...
I use Aliyun s ECS with 1G memory, and the configuration is slightly lower. I originally wanted to install an elasticsearch to realize full-text index search, but the software elasticsearch was developed by java. It seems that the software developed by ...
laravel-admin laravel-admin-extensions media-player github , . , . ., !!! the last two pictures are what I used in the code. ...
return QueryList::get($url)->rules($rules)->range($range)->query(function ($item){ $re = []; $rt = QueryList::get($item[ link ])->query(); $re[ title ] = $rt->find( .gb-final-pn-article>h1 )-...
problem description will laravel lose data when using dual (write jobs inside jobs) queues (jobs)? may lose some data, which is not the case. Chunk used in jobs to process data in blocks the environmental background of the problems and what methods...
after PayPal sandbox payment is tested, there is no transaction record or callback. It is not possible for sandbox account to create two additional test accounts, no transaction record and no callback notification. you can open the sandbox payment pag...
I now have such a problem, which requires that the user can enter special characters, but it needs to be displayed after typing, and the input segment can also be edited, and the display is still corresponding to which characters are entered instead of c...
on the problem of CURL remotely fetching web page data in PHP. needs to grab the contents of the dictionary, and the local test can return FALSE when placed on the server. I saw that some related questions were raised before https: codeshelper.com q...
when developing a project with eclipse, as shown in figure 1 and figure 2, the top layout is the same. Is there any way to make the top layout written in a top.html, and then each html can directly call the top.html instead of writing it once in every h...
...
I want to overload the multiplication operator of a vector. At the same time, you can calculate the vector vector, and the vector float v is the vector . def __mul__(v1, v2): return vec3(v1.e[0]*v2.e[0],v1.e[1]*v2.e[1],v1.e[2]*v2.e[2]) ...