Related Articles

*NEW
PHP – Parse Filenames and Paths with pathinfo()
The pathinfo() function allows you to turn a filepath into an Array and then interact with the keys of the Array. You can grab the Filename, Extension, Folder Name and Basename. pathinfo() https://www.php.net/manual/en/function.pathinfo.php https://www.w3schools.com/php/func_filesystem_pathinfo.asp pathinfo.php

PHP Programming (NEW)
PHP – Access Named Keys in Arrays – Foreach()
The foreach() function can turn Named Keys into variables just like it does array values.

PHP Programming (NEW)
PHP – Comparison Operators
Comparison Operators allow you to compare variable values against values to determine whether an event should trigger. You use Comparison Operators in Loops and If Statements.
Be the first to comment