ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "TokenizerExtension.php"
Full Path: /home/zcziejy/ryadselyen/plugins/loco-translate/src/compat/TokenizerExtension.php
File size: 546 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Placeholder for missing PHP "tokenizer" extension.
* Just avoids fatal errors. Does not actually replace functionality.
*
* If this extension is missing PHP string extraction will not work at all.
*/
abstract class Loco_compat_TokenizerExtension {
public static function token_get_all( $value ){
return [];
}
}
// @codeCoverageIgnoreStart
if( ! function_exists('token_get_all') ){
function token_get_all( $value ){
return Loco_compat_TokenizerExtension::token_get_all($value);
}
}