Skip to main content
PHP strtok

PHP strtok

By PHP No Comments
The PHP function strtok splits a string one by one. In the example below I'm trying to split off everything after the ? in the URL. https://www.facebook.com/LiquidWebInc?fref=ts https://www.facebook.com/CocaColaUnitedStates?brand_redir=1 In PHP…
Read More
PHP parse_str

PHP parse_str

By PHP No Comments
Quick example of how to use PHP's parse_str command. Here is an example of my data: $source = "access_token=CAAWhyYsjaWsBAOCwjZCs&expires=5180531"; What I'm trying to do is just grab the string of…
Read More