PHP
CRUD API
https://github.com/mevdschee/php-crud-api
Troubleshoot
strtolower() 中文字出亂碼
Problem
$str = "邊度有傷人士廁所 Abc";
echo strtolower($str);邚度有傷殘人士洗手間 abcSolution
$str = "邊度有傷人士廁所 Abc";
echo mb_strtolower($str);邊度有傷人士廁所 abcRegular Expression
Live Regex
https://www.phpliveregex.com/#tab-preg-replace
Tutorial
Last updated