Searched refs:fromString (Results 1 – 11 of 11) sorted by relevance
/PHP-8.4/ext/mbstring/tests/ |
H A D | encoding_tests.inc | 100 testConversion($fromString, $toString, $fromEncoding, $toEncoding); 115 testConversion($fromString, $toString, $fromEncoding, $toEncoding); 123 identifyValidString($fromString, $fromEncoding); 128 identifyInvalidString($fromString, $fromEncoding); 138 $fromString = $toString = ''; 140 $fromString .= $goodChar; 147 $fromString = $toString = ''; 150 $fromString .= $goodChar; 156 $strLen = mb_strlen($fromString, $fromEncoding); 173 $fromString = array_pop($badChars) . $goodChar; [all …]
|
H A D | hz_encoding.phpt | 63 $fromString = $toString = ''; 66 $fromString .= $goodChar; 72 testValidString('~{' . $fromString . '~}', $toString, 'HZ', 'UTF-16BE', $reversible); 86 $fromString = array_pop($badChars) . $goodChar; 89 testInvalidString('~{' . $fromString . '~}', $toString, 'HZ', 'UTF-16BE'); 114 $fromString = array_pop($badChars) . $goodChar; 117 convertInvalidString($fromString, $toString, 'UTF-16BE', 'HZ');
|
/PHP-8.4/ext/xmlreader/tests/ |
H A D | fromString_custom_constructor_error.phpt | 2 XMLReader::fromString() - custom constructor with error 14 CustomXMLReader::fromString("<root/>");
|
H A D | fromString_custom_constructor.phpt | 2 XMLReader::fromString() - custom constructor 16 $reader = CustomXMLReader::fromString("<root/>");
|
H A D | var_dump.phpt | 7 $reader = XMLReader::fromString("<root>hi</root>");
|
/PHP-8.4/ext/xmlreader/ |
H A D | php_xmlreader.stub.php | 221 …public static function fromString(string $source, ?string $encoding = null, int $flags = 0): stati… function in XMLReader
|
H A D | php_xmlreader_arginfo.h | 139 ZEND_METHOD(XMLReader, fromString); 169 ZEND_ME(XMLReader, fromString, arginfo_class_XMLReader_fromString, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
H A D | php_xmlreader.c | 1261 PHP_METHOD(XMLReader, fromString) in PHP_METHOD() argument
|
/PHP-8.4/build/ |
H A D | gen_stub.php | 199 return new ArrayType(Type::fromString("int|string"), Type::fromString("mixed|ref")); 262 public static function fromString(string $typeString): SimpleType function in SimpleType 292 return new ArrayType(Type::fromString("int"), Type::fromString($matches[1])); 302 return new ArrayType(Type::fromString($matches[1]), Type::fromString($matches[3])); 596 SimpleType::fromString("Traversable"), 606 public static function fromString(string $typeString): self { function in Type 635 $simpleTypes[] = SimpleType::fromString($simpleTypeName); 4324 isset($docParamTypes[$varName]) ? Type::fromString($docParamTypes[$varName]) : null, 4345 $docReturnType ? Type::fromString($docReturnType) : null, 4418 $constPhpDocType = $phpDocType ? Type::fromString($phpDocType) : null; [all …]
|
/PHP-8.4/ |
H A D | NEWS | 805 . Add XMLReader::fromStream(), XMLReader::fromUri(), XMLReader::fromString(). (nielsdos)
|
H A D | UPGRADING | 886 . Added XMLReader::fromStream(), XMLReader::fromUri(), XMLReader::fromString().
|
Completed in 42 milliseconds