List of PHP binary safe functions: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (Text replacement - "== references ==" to "== References ==") |
||
| Line 23: | Line 23: | ||
== | == References == | ||
<references /> | <references /> | ||
[[Category:PHP]] [[Category:Programming]] | [[Category:PHP]] [[Category:Programming]] | ||
[[Category:Web_Dev]] | [[Category:Web_Dev]] | ||
Revision as of 17:13, 10 July 2022
List of PHP binary safe[1] functions. Briefly speaking, using binary safe functions to manipulate the string in Madarian or other unicode string.
| Purpose | Binary safe function | NOT binary safe |
|---|---|---|
| "Return part of a string" | mb_substr | substr |
| "Get string length" | mb_strlen | strlen |
| "Convert a string to an array | mb_str_split | str_split |
| "Count the number of substring occurrences" | mb_substr_count | substr_count |
| "Replace all occurrences of the search string with the replacement string" | str_replace | |
| "Find the position of the first occurrence of a substring in a string" | mb_strpos | strpos |
| "Replace text within a portion of a string" | substr_replace or mb_substr_replace | |
| ... | ... | ... |