Home
last modified time | relevance | path

Searched refs:strtolower (Results 151 – 175 of 846) sorted by relevance

12345678910>>...34

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/
H A DCamelCapsFunctionNameSniff.php130 $magicPart = strtolower(substr($methodName, 2));
198 $magicPart = strtolower(substr($functionName, 2));
/plugin/rrdgraph/inc/
H A Drpncomputer.php28 $name = strtolower(trim($name));
145 $v = strtolower(trim($part));
H A Dcontenttypes.php26 $extension = strtolower(ltrim(strrchr($fileName, '.'), '.'));
/plugin/davcal/vendor/sabre/uri/lib/
H A Dfunctions.php132 $parts['scheme'] = strtolower($parts['scheme']);
154 if ($parts['host']) $parts['host'] = strtolower($parts['host']);
/plugin/farm/
H A Dconfig.class.php88 if(in_array(strtolower($d), array('true', 'false'))) $d = (strtolower($d) == 'true');
135 if(in_array(strtolower($d), array('true', 'false'))) {
136 $d = (strtolower($d) == 'true');
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A Dconfig.php385 $abs_type_dir = strtolower($type) . '/';
390 $abs_type_dir = strtolower($type) . '/';
446 $os = strtolower($os);
447 $_OS = strtolower(PHP_OS);
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dconfig.php387 $abs_type_dir = strtolower($type) . '/';
392 $abs_type_dir = strtolower($type) . '/';
448 $os = strtolower($os);
449 $_OS = strtolower(PHP_OS);
/plugin/html2pdf/html2pdf/html2ps/
H A Dfetched_data._html.class.php9 return strtolower($matches[2]);
H A Dcss.font-weight.inc.php9 switch (trim(strtolower($value))) {
H A Dcss.font-style.inc.php9 $value = trim(strtolower($value));
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A Dautoload.php32 $cn = strtolower($class);
/plugin/zip/pear/File/Archive/Reader/
H A DMimeList.php41 $extension = strtolower(substr($filename, $pos+1));
/plugin/adhocmathml/
H A Dmath.php23 return in_array(strtolower($value), array('block','inline'));
H A Dmover.php24 return in_array(strtolower($value), array('true','false'));
H A Dmunder.php24 return in_array(strtolower($value), array('true','false'));
H A Dmunderover.php24 return in_array(strtolower($value), array('true','false'));
H A Dmo.php28 return in_array(strtolower($value), array('true','false'));
/plugin/struct/meta/
H A DSchema.php156 $table = strtolower($table);
346 if ($col->isEnabled() && PhpString::strtolower($col->getLabel()) === PhpString::strtolower($name)) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DBlockTag.php37 if (isset($p['DISPLAY']) && strtolower($p['DISPLAY']) === 'none') {
46 if (isset($attr['POSITION']) && strtolower($attr['POSITION']) === 'bottom') {
51 if (isset($attr['ALIGN']) && strtolower($attr['ALIGN']) === 'bottom') {
53 } elseif (isset($p['CAPTION-SIDE']) && strtolower($p['CAPTION-SIDE']) === 'bottom') {
70 if (isset($attr['METHOD']) && strtolower($attr['METHOD']) === 'get') {
84 && (strtolower($p['POSITION']) === 'fixed'
85 || strtolower($p['POSITION']) === 'absolute'))
391 $v = strtolower($properties['VISIBILITY']);
687 && strtolower($properties['MARGIN-LEFT']) === 'auto' && strtolower(
[all...]
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAWS.php194 if (strpos(strtolower($headerName), 'x-amz-') === 0) {
195 … $amzHeaders[strtolower($headerName)] = str_replace(["\r\n"], [' '], $headerValue[0]) . "\n";
/plugin/jplayer/vendor/symfony/process/Tests/
H A DExecutableFinderTest.php165 $this->assertEquals(strtolower($expected), strtolower($tested));
/plugin/authradius/
H A Dauth.php129 $this->classes[$user] = strtolower($data);
168 $data['grps'] = split('!:|;|,!', strtolower($this->classes[$user]));
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DAWS.php194 if (strpos(strtolower($headerName), 'x-amz-') === 0) {
195 … $amzHeaders[strtolower($headerName)] = str_replace(["\r\n"], [' '], $headerValue[0]) . "\n";
/plugin/openid/Auth/Yadis/
H A DParseHTML.php201 $link_attrs[strtolower($name)] = $value;
226 (in_array(strtolower($tag['http-equiv']),
/plugin/mantis/lib/
H A Dclass.soap_server.php307 $k = strtolower($k);
332 $k = str_replace(' ', '-', strtolower(str_replace('_', ' ', substr($k, 5))));
334 $k = str_replace(' ', '-', strtolower(str_replace('_', ' ', $k)));
366 …str_replace(' ', '-', strtolower(str_replace('_', ' ', substr($k, 5)))); …
368 …$k = str_replace(' ', '-', strtolower(str_replace('_', ' ', $k))); …
525 $method_to_compare = (substr(phpversion(), 0, 2) == '4.') ? strtolower($method) : $method;

12345678910>>...34