https://scotch.io/tutorials/token-based-authentication-for-angularjs-and-laravel-apps http://ryanchenkie.com/token-based-authentication-for-angularjs-and-laravel-apps/
Categorie: PHP
dec 18
UBB codes naar regex (met PHP voorbeeld)
Voorbeeld in PHP // Patterns $pat = array(); $pat[] = ‘/\[url\](.*?)\[\/url\]/’; // URL Type 1 $pat[] = ‘/\[url=(.*?)\](.*?)\[\/url\]/’; // URL Type 2 $pat[] = ‘/\[img\](.*?)\[\/img\]/’; // Image // … more search patterns here // Replacements $rep = array(); $rep[] = ‘<a href=”$1″>$1</a>’; // URL Type 1 $rep[] = ‘<a href=”$1″>$2</a>’; // URL Type 2 $rep[] …