Pinned content
View all 3 collectionsPHP admins have deemed these posts noteworthy.
Start learning PHP — Useful resources for beginners and advanced
Common Mistakes to Avoid in PHP
Can you answer these questions?
View all unanswered questionsThese questions still don't have an answer
WooCommerce Hook is not firing and seem to be deprecated
Azure Table PHP Retrieve Latest Data First with Pagination
How to install league/csv bundle with Doctrine v3.3 on Symfony?
does database chunk() have a memory leak?
Retrieving values from 2 tables at the same time in CakePHP 3
Recommended answers
View all recommended answersThese answers have been recommended
How to change the title of the billing field?in Woocommerce
You can do this add_filter( 'gettext', 'change_billing_title', 20, 3 ); function change_billing_title( $translated, $text, $domain ) { if ( $domain === 'woocommerce' ) { if ( $text == '...
Why does Laravel read the schema as if it had 2 primary keys? [duplicate]
The error is in $table->integer('class_level', 3); Syntax integer($column, $autoIncrement = false, $unsigned = false) You can use unsignedTinyInteger() integer() FYK. (In future, hels you debug) ...
Deploy Laravel version 12 (PHP, Inertia, ReactJS, Tailwind) to cPanel shared with no SSH Access
Sorry you'll have to bear with me as I'm not a Laravel expert, but are you absolutely sure you need to run those in the live environment - you can't just deploy ready-made files and database and run ...
`docker-php-ext-install opcache` works with PHP 8.4 but not PHP 8.5 [closed]
As documented in the PHP 8.5 changelog, since PHP 8.5 the Opcache extension now always ships with PHP (non-optional). So you don't need to install it any longer. Opcache: Make OPcache non-optional (...
Problem with module during dolibarr update [closed]
You have upgraded to the wrong version. The 20.0.2 release is an update for the 20.0 branch. But you are coming from the 16.0.3 version, so the 16.0 branch. Please follow the upgrade instructions for ...
See what's trending
View all trending questionsThese are the most active questions in PHP Collective
How can I prevent SQL injection in PHP?
Reference Guide: What does this symbol mean in PHP? (PHP Syntax)
How do I check if a string contains a specific word?
How do I get a YouTube video thumbnail from the YouTube API?
Deleting an element from an array in PHP
Quick guide to Laravel package development
Properly removing API from Laravel project
How to trim (or non-breaking space) in PHP?
Evolution of Type Declarations in PHP
Start learning PHP — Useful resources for beginners and advanced
Simply submit a proposal, get it approved, and publish it.
See how the process works