Home
last modified time | relevance | path

Searched refs:preg_match (Results 401 – 425 of 1399) sorted by last modified time

1...<<11121314151617181920>>...56

/plugin/a2s/
H A Dsyntax.php80 preg_match( '/<( *)a2s( *)>/', $match, $spaces );
196 preg_match( '/width="(.*?)px" height="(.*?)px"/', $svgtxt, $sizes );
/plugin/structcondstyle/
H A Daction.php85 if(!preg_match('/\s*[a-zA-z]+\s*.+\s*[a-zA-z0-9]+\s*\?\s*".+"\s*:\s*.+"/',$val)){
101 if(preg_match("/\s*[a-zA-z]+\s*$op_reg\s*[a-zA-z0-9]+\s*/",$condition)){
/plugin/c3chart/
H A Daction.php60 if(!preg_match('#^(?:(?:https?:)?/)?/#', $u)) {
/plugin/vshare/syntax/
H A Dvideo.php235 if (preg_match("/^((\d+)x(\d+))|($known)\$/i", $key, $m)) {
/plugin/vshare/_test/
H A DSitesTest.php57 preg_match('!' . $data['rex'] . '!i', $url, $match),
/plugin/translate/
H A Dhelper.php88 return preg_match('/^\w{2,3}(?:-\w+)?$/', $lang) &&
/plugin/commonmark/
H A Daction.php36 elseif (preg_match('/\A<!DOCTYPE markdown>/',$event->data)) {
/plugin/twofactorgoogleauth/
H A DQRCode.php179 if (preg_match($numeric, $data)) return 0;
180 if (preg_match($alphanumeric, $data)) return 1;
181 if (preg_match($kanji, $data)) return 3;
/plugin/layeranimation/syntax/
H A Danimation.php49 if ( $isNumeric || preg_match("/.*?(vw|vh|em)$/", $item) ) {
/plugin/lms/
H A Dhelper.php217 if (!preg_match("/^$check(:|$)/", ":$ns")) {
/plugin/authorstats/
H A Dsyntax.php63 if (preg_match("/<AUTHORSTATS (?P<months>[0-9]+)>/", $data[0], $matches)) {
65 …} else if (preg_match("/<AUTHORSTATS YEARGRAPH\s*(?P<years>[0-9]+)*\s*(?P<sort>(:?asc|ascending|de…
139 …if (preg_match("/^(desc|descending|rev|reverse)$/", $inopts["sort"])) { // Reverse the sort ord…
/plugin/structtemplate/meta/
H A DStructTemplateSyntax.php86 if (preg_match('/^----+$/', $lines[$line_index])) {
98 …$options['html'] = (preg_match('/\bhtml\b/', strtolower($lines[0])) === 1); //FIXME: check if HTML…
/plugin/popupviewer/syntax/
H A Dviewer.php184 if ( !preg_match('/^(.*)@([^@]+)$/u', array_pop(explode('|', $name)), $match)) {
/plugin/openas/
H A Daction.php155 if(preg_match("/$old_id/",$c_link)) { //is this link id found in the current page
H A Dsyntax.php108 if(preg_match('/^TAreaOpen:(.*?)$/',$match,$matches)) {
116 if(preg_match("/^OpenAsNUM:(.*?)$/",$match,$matches)) {
127 if(preg_match("/SAVEAS_PAGE/i",$match)) {
/plugin/xtern/
H A Dadmin.php171 if(preg_match("#<\/code>#",$buffer)) {
177 if(preg_match("#\<\/file>#",$buffer)) {
182 if(preg_match("#^\s*\<code.*?>#",$buffer)) {
186 if(preg_match("#^\s*\<file.*?>#",$buffer)) {
190 if(preg_match("#\<nowiki>#",$buffer)) {
191 if(preg_match('#\<nowiki>.*?https?:\/\/.*?\<\/nowiki\>#', $buffer)) {
195 if(preg_match("#\[?(https?://\S+)\]?#",$buffer,$matches)) {
217 if(preg_match("#\{\{https?://(.*?)\}\}#", $url,$submatches)) {
H A Daction.php56 if(preg_match($regex,$ID)) {
/plugin/xtern/scripts/
H A Dchk_links.php25 if(preg_match("#\[\[(https?://.*?)\]\]#",$buffer,$matches)) {
/plugin/xcom/scripts/
H A Dxcom_save.php87 if(preg_match('/\.(\w{3,4})$/',$id,$matches)) {
232 preg_match('/(\d+)-\d+-\d+/',$resp,$matches);
241 preg_match('/(\d+)-\d+-\d+/',$resp,$matches);
/plugin/xcom/
H A Dremote.php131 if($regex) if(preg_match('#'. $regex .'#',"$dir/$value")) {continue;}
138 … else if(! preg_match('#'. $regex .'#',"$dir/$value")) {
273 if (preg_match("/\.meta$/", $file)) {
/plugin/newpagetemplate/
H A Dadmin.php143 if (preg_match("/\.ini$/", $file)) {
155 if (preg_match("/\.txt$/", $file)) {
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/
H A DDigestMD5Encoder.php17 use function dechex, explode, implode, preg_match, sprintf, str_pad, strlen, substr; alias
125 if (!preg_match(self::MATCH_KEY, substr($this->binary, $this->pos), $keyMatches)) {
285 if (!preg_match(self::MATCH_QD_STR_VAL, substr($this->binary, $this->pos), $matches)) {
308 if (!preg_match(self::MATCH_LHEX, substr($this->binary, $this->pos), $matches)) {
324 if (!preg_match($regex, substr($this->binary, $this->pos), $matches)) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEscapeTrait.php16 use function preg_match;
54 return (preg_match('/^(\\\\[0-9A-Fa-f]{2})+$/', $value) === 1 || $value === '');
H A DOption.php14 use function preg_match;
74 preg_match(self::MATCH_RANGE, $this->option, $match);
90 preg_match(self::MATCH_RANGE, $this->option, $match);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php26 use function preg_match;
325 if (preg_match('/^(ldaps?)\:\/\/\/(.*)$/', $url, $matches) === 0) {

1...<<11121314151617181920>>...56