First, install Composer if you don’t yet have it: php -r “eval(‘?>’.file_get_contents(‘https://getcomposer.org/installer’));” Create a composer.json file with the following content: { “require”: { “apache/log4php”: “2.3.0” } } Run the Composer install procedure: php composer.phar install This will install Apache log4php in vendor/apache/log4php. To use log4php simply include vendor/autoload.php in your script. require ‘vendor/autoload.php’; $log = . . . Read more
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Cài node lại bằng nvm 1. Install NVM (Node Version Manager) To download the nvm install script run the following command: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash The script will clone the nvm repository from Github to ~/.nvm and add the script Path to your Bash or ZSH profile. => Close and reopen your terminal . . . Read more
Sorry you have no rights to view this entry!
Trong php7 thì hàm split , spliti đã bị xóa có thể thay thế bàng hàm sau: đối với split thay bằng preg_split đối với spliti thay bằng explode
Sorry you have no rights to view this entry!