in Php
PHP Filesystem Functions Function Description basename() Returns the filename component of a path chgrp() Changes the file group chmod() Changes the file mode chown() Changes the file owner clearstatcache() Clears the file status cache copy() Copies a file delete() See unlink() dirname() Returns the directory name component of a path disk_free_space() Returns the free space of […]
in Php
The implode() function returns a string from the elements of an array. Note: The implode() function accept its parameters in either order. However, for consistency with explode(), you should use the documented order of arguments. Note: The separator parameter of implode() is optional. However, it is recommended to always use two parameters for backwards compatibility. Note: This function is […]
in Php
The FILTER_FLAG_HOST_REQUIRED filter flag was deprecated in PHP 7.3 and there are no longer any references to it in the PHPMailer code base. So a straightforward fix should be to simply update PHPMailer. If you were using composer this would be automatic and very simple, but you’re not, so you’ll have to download the latest version and install […]
in Php
To get the file creation date in PHP, you can use the filectime() function. This function returns the creation time of the file, as a Unix timestamp. This code will output the creation date of the file in the format “Y-m-d H:i:s”, e.g. “2022-01-01 12:00:00”. Get file size in gb
error in CodeIgniter website after update php 7.4 to php 8.2 how to resolve error CodeIgniter website error PHP Warning Deprecated: Creation of dynamic property is deprecated /system/core/URI.php /system/core/Router.php /system/core/Loader.php /system/core/Controller.php /system/database/DB_driver.php
You must be logged in to post a comment.