@@ -60,31 +60,31 @@ discard block |
||
60 | 60 | protected static $utfBoms; |
61 | 61 | |
62 | 62 | /** |
63 | - * Opens a serialized file and returns the unserialized data. |
|
64 | - * |
|
65 | - * @param string $file |
|
66 | - * @throws FileHelper_Exception |
|
67 | - * @return array |
|
68 | - * @deprecated Use parseSerializedFile() instead. |
|
69 | - * @see FileHelper::parseSerializedFile() |
|
70 | - */ |
|
63 | + * Opens a serialized file and returns the unserialized data. |
|
64 | + * |
|
65 | + * @param string $file |
|
66 | + * @throws FileHelper_Exception |
|
67 | + * @return array |
|
68 | + * @deprecated Use parseSerializedFile() instead. |
|
69 | + * @see FileHelper::parseSerializedFile() |
|
70 | + */ |
|
71 | 71 | public static function openUnserialized(string $file) : array |
72 | 72 | { |
73 | 73 | return self::parseSerializedFile($file); |
74 | 74 | } |
75 | 75 | |
76 | - /** |
|
77 | - * Opens a serialized file and returns the unserialized data. |
|
78 | - * |
|
79 | - * @param string $file |
|
80 | - * @throws FileHelper_Exception |
|
81 | - * @return array |
|
82 | - * @see FileHelper::parseSerializedFile() |
|
83 | - * |
|
84 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
85 | - * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ |
|
86 | - * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED |
|
87 | - */ |
|
76 | + /** |
|
77 | + * Opens a serialized file and returns the unserialized data. |
|
78 | + * |
|
79 | + * @param string $file |
|
80 | + * @throws FileHelper_Exception |
|
81 | + * @return array |
|
82 | + * @see FileHelper::parseSerializedFile() |
|
83 | + * |
|
84 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
85 | + * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ |
|
86 | + * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED |
|
87 | + */ |
|
88 | 88 | public static function parseSerializedFile(string $file) : array |
89 | 89 | { |
90 | 90 | self::requireFileExists($file); |
@@ -160,13 +160,13 @@ discard block |
||
160 | 160 | return rmdir($rootFolder); |
161 | 161 | } |
162 | 162 | |
163 | - /** |
|
164 | - * Create a folder, if it does not exist yet. |
|
165 | - * |
|
166 | - * @param string $path |
|
167 | - * @throws FileHelper_Exception |
|
168 | - * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
169 | - */ |
|
163 | + /** |
|
164 | + * Create a folder, if it does not exist yet. |
|
165 | + * |
|
166 | + * @param string $path |
|
167 | + * @throws FileHelper_Exception |
|
168 | + * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
169 | + */ |
|
170 | 170 | public static function createFolder(string $path) : void |
171 | 171 | { |
172 | 172 | if(is_dir($path) || mkdir($path, 0777, true)) { |
@@ -213,22 +213,22 @@ discard block |
||
213 | 213 | } |
214 | 214 | } |
215 | 215 | |
216 | - /** |
|
217 | - * Copies a file to the target location. Includes checks |
|
218 | - * for most error sources, like the source file not being |
|
219 | - * readable. Automatically creates the target folder if it |
|
220 | - * does not exist yet. |
|
221 | - * |
|
222 | - * @param string $sourcePath |
|
223 | - * @param string $targetPath |
|
224 | - * @throws FileHelper_Exception |
|
225 | - * |
|
226 | - * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
227 | - * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND |
|
228 | - * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE |
|
229 | - * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE |
|
230 | - * @see FileHelper::ERROR_CANNOT_COPY_FILE |
|
231 | - */ |
|
216 | + /** |
|
217 | + * Copies a file to the target location. Includes checks |
|
218 | + * for most error sources, like the source file not being |
|
219 | + * readable. Automatically creates the target folder if it |
|
220 | + * does not exist yet. |
|
221 | + * |
|
222 | + * @param string $sourcePath |
|
223 | + * @param string $targetPath |
|
224 | + * @throws FileHelper_Exception |
|
225 | + * |
|
226 | + * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
227 | + * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND |
|
228 | + * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE |
|
229 | + * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE |
|
230 | + * @see FileHelper::ERROR_CANNOT_COPY_FILE |
|
231 | + */ |
|
232 | 232 | public static function copyFile(string $sourcePath, string $targetPath) : void |
233 | 233 | { |
234 | 234 | self::requireFileExists($sourcePath, self::ERROR_SOURCE_FILE_NOT_FOUND); |
@@ -268,15 +268,15 @@ discard block |
||
268 | 268 | ); |
269 | 269 | } |
270 | 270 | |
271 | - /** |
|
272 | - * Deletes the target file. Ignored if it cannot be found, |
|
273 | - * and throws an exception if it fails. |
|
274 | - * |
|
275 | - * @param string $filePath |
|
276 | - * @throws FileHelper_Exception |
|
277 | - * |
|
278 | - * @see FileHelper::ERROR_CANNOT_DELETE_FILE |
|
279 | - */ |
|
271 | + /** |
|
272 | + * Deletes the target file. Ignored if it cannot be found, |
|
273 | + * and throws an exception if it fails. |
|
274 | + * |
|
275 | + * @param string $filePath |
|
276 | + * @throws FileHelper_Exception |
|
277 | + * |
|
278 | + * @see FileHelper::ERROR_CANNOT_DELETE_FILE |
|
279 | + */ |
|
280 | 280 | public static function deleteFile(string $filePath) : void |
281 | 281 | { |
282 | 282 | if(!file_exists($filePath)) { |
@@ -298,15 +298,15 @@ discard block |
||
298 | 298 | } |
299 | 299 | |
300 | 300 | /** |
301 | - * Creates a new CSV parser instance and returns it. |
|
302 | - * |
|
303 | - * @param string $delimiter |
|
304 | - * @param string $enclosure |
|
305 | - * @param string $escape |
|
306 | - * @param bool $heading |
|
307 | - * @return Csv |
|
301 | + * Creates a new CSV parser instance and returns it. |
|
302 | + * |
|
303 | + * @param string $delimiter |
|
304 | + * @param string $enclosure |
|
305 | + * @param string $escape |
|
306 | + * @param bool $heading |
|
307 | + * @return Csv |
|
308 | 308 | * @see CSVHelper::createParser() |
309 | - */ |
|
309 | + */ |
|
310 | 310 | public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : Csv |
311 | 311 | { |
312 | 312 | if($delimiter==='') { $delimiter = ';'; } |
@@ -319,21 +319,21 @@ discard block |
||
319 | 319 | return $parser; |
320 | 320 | } |
321 | 321 | |
322 | - /** |
|
323 | - * Parses all lines in the specified string and returns an |
|
324 | - * indexed array with all csv values in each line. |
|
325 | - * |
|
326 | - * @param string $csv |
|
327 | - * @param string $delimiter |
|
328 | - * @param string $enclosure |
|
329 | - * @param string $escape |
|
330 | - * @param bool $heading |
|
331 | - * @return array |
|
332 | - * @throws FileHelper_Exception |
|
333 | - * |
|
334 | - * @see parseCSVFile() |
|
335 | - * @see FileHelper::ERROR_PARSING_CSV |
|
336 | - */ |
|
322 | + /** |
|
323 | + * Parses all lines in the specified string and returns an |
|
324 | + * indexed array with all csv values in each line. |
|
325 | + * |
|
326 | + * @param string $csv |
|
327 | + * @param string $delimiter |
|
328 | + * @param string $enclosure |
|
329 | + * @param string $escape |
|
330 | + * @param bool $heading |
|
331 | + * @return array |
|
332 | + * @throws FileHelper_Exception |
|
333 | + * |
|
334 | + * @see parseCSVFile() |
|
335 | + * @see FileHelper::ERROR_PARSING_CSV |
|
336 | + */ |
|
337 | 337 | public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array |
338 | 338 | { |
339 | 339 | $parser = self::createCSVParser($delimiter, $enclosure, '\\', $heading); |
@@ -521,27 +521,27 @@ discard block |
||
521 | 521 | ); |
522 | 522 | } |
523 | 523 | |
524 | - /** |
|
525 | - * Verifies whether the target file is a PHP file. The path |
|
526 | - * to the file can be a path to a file as a string, or a |
|
527 | - * DirectoryIterator object instance. |
|
528 | - * |
|
529 | - * @param string|DirectoryIterator $pathOrDirIterator |
|
530 | - * @return boolean |
|
531 | - */ |
|
524 | + /** |
|
525 | + * Verifies whether the target file is a PHP file. The path |
|
526 | + * to the file can be a path to a file as a string, or a |
|
527 | + * DirectoryIterator object instance. |
|
528 | + * |
|
529 | + * @param string|DirectoryIterator $pathOrDirIterator |
|
530 | + * @return boolean |
|
531 | + */ |
|
532 | 532 | public static function isPHPFile($pathOrDirIterator) : bool |
533 | 533 | { |
534 | - return self::getExtension($pathOrDirIterator) === 'php'; |
|
534 | + return self::getExtension($pathOrDirIterator) === 'php'; |
|
535 | 535 | } |
536 | 536 | |
537 | - /** |
|
538 | - * Retrieves the extension of the specified file. Can be a path |
|
539 | - * to a file as a string, or a DirectoryIterator object instance. |
|
540 | - * |
|
541 | - * @param string|DirectoryIterator $pathOrDirIterator |
|
542 | - * @param bool $lowercase |
|
543 | - * @return string |
|
544 | - */ |
|
537 | + /** |
|
538 | + * Retrieves the extension of the specified file. Can be a path |
|
539 | + * to a file as a string, or a DirectoryIterator object instance. |
|
540 | + * |
|
541 | + * @param string|DirectoryIterator $pathOrDirIterator |
|
542 | + * @param bool $lowercase |
|
543 | + * @return string |
|
544 | + */ |
|
545 | 545 | public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string |
546 | 546 | { |
547 | 547 | if($pathOrDirIterator instanceof DirectoryIterator) { |
@@ -552,38 +552,38 @@ discard block |
||
552 | 552 | |
553 | 553 | $ext = pathinfo($filename, PATHINFO_EXTENSION); |
554 | 554 | if($lowercase) { |
555 | - $ext = mb_strtolower($ext); |
|
555 | + $ext = mb_strtolower($ext); |
|
556 | 556 | } |
557 | 557 | |
558 | 558 | return $ext; |
559 | 559 | } |
560 | 560 | |
561 | - /** |
|
562 | - * Retrieves the file name from a path, with or without extension. |
|
563 | - * The path to the file can be a string, or a DirectoryIterator object |
|
564 | - * instance. |
|
565 | - * |
|
566 | - * In case of folders, behaves like the pathinfo function: returns |
|
567 | - * the name of the folder. |
|
568 | - * |
|
569 | - * @param string|DirectoryIterator $pathOrDirIterator |
|
570 | - * @param bool $extension |
|
571 | - * @return string |
|
572 | - */ |
|
561 | + /** |
|
562 | + * Retrieves the file name from a path, with or without extension. |
|
563 | + * The path to the file can be a string, or a DirectoryIterator object |
|
564 | + * instance. |
|
565 | + * |
|
566 | + * In case of folders, behaves like the pathinfo function: returns |
|
567 | + * the name of the folder. |
|
568 | + * |
|
569 | + * @param string|DirectoryIterator $pathOrDirIterator |
|
570 | + * @param bool $extension |
|
571 | + * @return string |
|
572 | + */ |
|
573 | 573 | public static function getFilename($pathOrDirIterator, $extension = true) : string |
574 | 574 | { |
575 | 575 | $path = strval($pathOrDirIterator); |
576 | - if($pathOrDirIterator instanceof DirectoryIterator) { |
|
577 | - $path = $pathOrDirIterator->getFilename(); |
|
578 | - } |
|
576 | + if($pathOrDirIterator instanceof DirectoryIterator) { |
|
577 | + $path = $pathOrDirIterator->getFilename(); |
|
578 | + } |
|
579 | 579 | |
580 | - $path = self::normalizePath($path); |
|
580 | + $path = self::normalizePath($path); |
|
581 | 581 | |
582 | - if(!$extension) { |
|
583 | - return pathinfo($path, PATHINFO_FILENAME); |
|
584 | - } |
|
582 | + if(!$extension) { |
|
583 | + return pathinfo($path, PATHINFO_FILENAME); |
|
584 | + } |
|
585 | 585 | |
586 | - return pathinfo($path, PATHINFO_BASENAME); |
|
586 | + return pathinfo($path, PATHINFO_BASENAME); |
|
587 | 587 | } |
588 | 588 | |
589 | 589 | /** |
@@ -624,16 +624,16 @@ discard block |
||
624 | 624 | return $json; |
625 | 625 | } |
626 | 626 | |
627 | - /** |
|
628 | - * Corrects common formatting mistakes when users enter |
|
629 | - * file names, like too many spaces, dots and the like. |
|
630 | - * |
|
631 | - * NOTE: if the file name contains a path, the path is |
|
632 | - * stripped, leaving only the file name. |
|
633 | - * |
|
634 | - * @param string $name |
|
635 | - * @return string |
|
636 | - */ |
|
627 | + /** |
|
628 | + * Corrects common formatting mistakes when users enter |
|
629 | + * file names, like too many spaces, dots and the like. |
|
630 | + * |
|
631 | + * NOTE: if the file name contains a path, the path is |
|
632 | + * stripped, leaving only the file name. |
|
633 | + * |
|
634 | + * @param string $name |
|
635 | + * @return string |
|
636 | + */ |
|
637 | 637 | public static function fixFileName(string $name) : string |
638 | 638 | { |
639 | 639 | $name = trim($name); |
@@ -715,20 +715,20 @@ discard block |
||
715 | 715 | return self::findFiles($targetFolder, array('php'), $options); |
716 | 716 | } |
717 | 717 | |
718 | - /** |
|
719 | - * Finds files according to the specified options. |
|
720 | - * |
|
721 | - * NOTE: This method only exists for backwards compatibility. |
|
722 | - * Use the `createFileFinder()` method instead, which offers |
|
723 | - * an object oriented interface that is much easier to use. |
|
724 | - * |
|
725 | - * @param string $targetFolder |
|
726 | - * @param string[] $extensions |
|
727 | - * @param array<string,mixed> $options |
|
728 | - * @throws FileHelper_Exception |
|
729 | - * @return string[] |
|
730 | - * @see FileHelper::createFileFinder() |
|
731 | - */ |
|
718 | + /** |
|
719 | + * Finds files according to the specified options. |
|
720 | + * |
|
721 | + * NOTE: This method only exists for backwards compatibility. |
|
722 | + * Use the `createFileFinder()` method instead, which offers |
|
723 | + * an object oriented interface that is much easier to use. |
|
724 | + * |
|
725 | + * @param string $targetFolder |
|
726 | + * @param string[] $extensions |
|
727 | + * @param array<string,mixed> $options |
|
728 | + * @throws FileHelper_Exception |
|
729 | + * @return string[] |
|
730 | + * @see FileHelper::createFileFinder() |
|
731 | + */ |
|
732 | 732 | public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array()) : array |
733 | 733 | { |
734 | 734 | $finder = self::createFileFinder($targetFolder); |
@@ -758,14 +758,14 @@ discard block |
||
758 | 758 | return $finder->getAll(); |
759 | 759 | } |
760 | 760 | |
761 | - /** |
|
762 | - * Removes the extension from the specified path or file name, |
|
763 | - * if any, and returns the name without the extension. |
|
764 | - * |
|
765 | - * @param string $filename |
|
766 | - * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to. |
|
767 | - * @return string |
|
768 | - */ |
|
761 | + /** |
|
762 | + * Removes the extension from the specified path or file name, |
|
763 | + * if any, and returns the name without the extension. |
|
764 | + * |
|
765 | + * @param string $filename |
|
766 | + * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to. |
|
767 | + * @return string |
|
768 | + */ |
|
769 | 769 | public static function removeExtension(string $filename, bool $keepPath=false) : string |
770 | 770 | { |
771 | 771 | // normalize paths to allow windows style slashes even on nix servers |
@@ -833,13 +833,13 @@ discard block |
||
833 | 833 | return null; |
834 | 834 | } |
835 | 835 | |
836 | - /** |
|
837 | - * Retrieves a list of all UTF byte order mark character |
|
838 | - * sequences, as an associative array with UTF encoding => bom sequence |
|
839 | - * pairs. |
|
840 | - * |
|
841 | - * @return array<string,string> |
|
842 | - */ |
|
836 | + /** |
|
837 | + * Retrieves a list of all UTF byte order mark character |
|
838 | + * sequences, as an associative array with UTF encoding => bom sequence |
|
839 | + * pairs. |
|
840 | + * |
|
841 | + * @return array<string,string> |
|
842 | + */ |
|
843 | 843 | public static function getUTFBOMs() : array |
844 | 844 | { |
845 | 845 | if(!isset(self::$utfBoms)) { |
@@ -855,15 +855,15 @@ discard block |
||
855 | 855 | return self::$utfBoms; |
856 | 856 | } |
857 | 857 | |
858 | - /** |
|
859 | - * Checks whether the specified encoding is a valid |
|
860 | - * unicode encoding, for example "UTF16-LE" or "UTF8". |
|
861 | - * Also accounts for alternate way to write the, like |
|
862 | - * "UTF-8", and omitting little/big endian suffixes. |
|
863 | - * |
|
864 | - * @param string $encoding |
|
865 | - * @return boolean |
|
866 | - */ |
|
858 | + /** |
|
859 | + * Checks whether the specified encoding is a valid |
|
860 | + * unicode encoding, for example "UTF16-LE" or "UTF8". |
|
861 | + * Also accounts for alternate way to write the, like |
|
862 | + * "UTF-8", and omitting little/big endian suffixes. |
|
863 | + * |
|
864 | + * @param string $encoding |
|
865 | + * @return boolean |
|
866 | + */ |
|
867 | 867 | public static function isValidUnicodeEncoding(string $encoding) : bool |
868 | 868 | { |
869 | 869 | $encodings = self::getKnownUnicodeEncodings(); |
@@ -882,40 +882,40 @@ discard block |
||
882 | 882 | return in_array($encoding, $keep); |
883 | 883 | } |
884 | 884 | |
885 | - /** |
|
886 | - * Retrieves a list of all known unicode file encodings. |
|
887 | - * @return string[] |
|
888 | - */ |
|
885 | + /** |
|
886 | + * Retrieves a list of all known unicode file encodings. |
|
887 | + * @return string[] |
|
888 | + */ |
|
889 | 889 | public static function getKnownUnicodeEncodings() : array |
890 | 890 | { |
891 | 891 | return array_keys(self::getUTFBOMs()); |
892 | 892 | } |
893 | 893 | |
894 | - /** |
|
895 | - * Normalizes the slash style in a file or folder path, |
|
896 | - * by replacing any antislashes with forward slashes. |
|
897 | - * |
|
898 | - * @param string $path |
|
899 | - * @return string |
|
900 | - */ |
|
894 | + /** |
|
895 | + * Normalizes the slash style in a file or folder path, |
|
896 | + * by replacing any antislashes with forward slashes. |
|
897 | + * |
|
898 | + * @param string $path |
|
899 | + * @return string |
|
900 | + */ |
|
901 | 901 | public static function normalizePath(string $path) : string |
902 | 902 | { |
903 | 903 | return str_replace(array('\\', '//'), array('/', '/'), $path); |
904 | 904 | } |
905 | 905 | |
906 | - /** |
|
907 | - * Saves the specified data to a file, JSON encoded. |
|
908 | - * |
|
909 | - * @param mixed $data |
|
910 | - * @param string $file |
|
911 | - * @param bool $pretty |
|
912 | - * @throws FileHelper_Exception |
|
913 | - * |
|
914 | - * @see FileHelper::ERROR_JSON_ENCODE_ERROR |
|
915 | - * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
916 | - * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
917 | - * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
918 | - */ |
|
906 | + /** |
|
907 | + * Saves the specified data to a file, JSON encoded. |
|
908 | + * |
|
909 | + * @param mixed $data |
|
910 | + * @param string $file |
|
911 | + * @param bool $pretty |
|
912 | + * @throws FileHelper_Exception |
|
913 | + * |
|
914 | + * @see FileHelper::ERROR_JSON_ENCODE_ERROR |
|
915 | + * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
916 | + * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
917 | + * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
918 | + */ |
|
919 | 919 | public static function saveAsJSON($data, string $file, bool $pretty=false) : void |
920 | 920 | { |
921 | 921 | $options = null; |
@@ -939,18 +939,18 @@ discard block |
||
939 | 939 | self::saveFile($file, $json); |
940 | 940 | } |
941 | 941 | |
942 | - /** |
|
943 | - * Saves the specified content to the target file, creating |
|
944 | - * the file and the folder as necessary. |
|
945 | - * |
|
946 | - * @param string $filePath |
|
947 | - * @param string $content |
|
948 | - * @throws FileHelper_Exception |
|
949 | - * |
|
950 | - * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
951 | - * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
952 | - * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
953 | - */ |
|
942 | + /** |
|
943 | + * Saves the specified content to the target file, creating |
|
944 | + * the file and the folder as necessary. |
|
945 | + * |
|
946 | + * @param string $filePath |
|
947 | + * @param string $content |
|
948 | + * @throws FileHelper_Exception |
|
949 | + * |
|
950 | + * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
951 | + * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
952 | + * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
953 | + */ |
|
954 | 954 | public static function saveFile(string $filePath, string $content='') : void |
955 | 955 | { |
956 | 956 | $filePath = self::normalizePath($filePath); |
@@ -1134,14 +1134,14 @@ discard block |
||
1134 | 1134 | return $output; |
1135 | 1135 | } |
1136 | 1136 | |
1137 | - /** |
|
1138 | - * Retrieves the last modified date for the specified file or folder. |
|
1139 | - * |
|
1140 | - * Note: If the target does not exist, returns null. |
|
1141 | - * |
|
1142 | - * @param string $path |
|
1143 | - * @return DateTime|NULL |
|
1144 | - */ |
|
1137 | + /** |
|
1138 | + * Retrieves the last modified date for the specified file or folder. |
|
1139 | + * |
|
1140 | + * Note: If the target does not exist, returns null. |
|
1141 | + * |
|
1142 | + * @param string $path |
|
1143 | + * @return DateTime|NULL |
|
1144 | + */ |
|
1145 | 1145 | public static function getModifiedDate(string $path) : ?DateTime |
1146 | 1146 | { |
1147 | 1147 | $time = filemtime($path); |
@@ -1154,25 +1154,25 @@ discard block |
||
1154 | 1154 | return $date; |
1155 | 1155 | } |
1156 | 1156 | |
1157 | - /** |
|
1158 | - * Retrieves the names of all subfolders in the specified path. |
|
1159 | - * |
|
1160 | - * Available options: |
|
1161 | - * |
|
1162 | - * - recursive: true/false |
|
1163 | - * Whether to search for subfolders recursively. |
|
1164 | - * |
|
1165 | - * - absolute-paths: true/false |
|
1166 | - * Whether to return a list of absolute paths. |
|
1167 | - * |
|
1168 | - * @param string|DirectoryIterator $targetFolder |
|
1169 | - * @param array $options |
|
1170 | - * @throws FileHelper_Exception |
|
1171 | - * @return string[] |
|
1172 | - * |
|
1173 | - * @see FileHelper::ERROR_FIND_SUBFOLDERS_FOLDER_DOES_NOT_EXIST |
|
1174 | - * @todo Move this to a separate class. |
|
1175 | - */ |
|
1157 | + /** |
|
1158 | + * Retrieves the names of all subfolders in the specified path. |
|
1159 | + * |
|
1160 | + * Available options: |
|
1161 | + * |
|
1162 | + * - recursive: true/false |
|
1163 | + * Whether to search for subfolders recursively. |
|
1164 | + * |
|
1165 | + * - absolute-paths: true/false |
|
1166 | + * Whether to return a list of absolute paths. |
|
1167 | + * |
|
1168 | + * @param string|DirectoryIterator $targetFolder |
|
1169 | + * @param array $options |
|
1170 | + * @throws FileHelper_Exception |
|
1171 | + * @return string[] |
|
1172 | + * |
|
1173 | + * @see FileHelper::ERROR_FIND_SUBFOLDERS_FOLDER_DOES_NOT_EXIST |
|
1174 | + * @todo Move this to a separate class. |
|
1175 | + */ |
|
1176 | 1176 | public static function getSubfolders($targetFolder, $options = array()) |
1177 | 1177 | { |
1178 | 1178 | if($targetFolder instanceof DirectoryIterator) { |
@@ -1237,16 +1237,16 @@ discard block |
||
1237 | 1237 | return $result; |
1238 | 1238 | } |
1239 | 1239 | |
1240 | - /** |
|
1241 | - * Retrieves the maximum allowed upload file size, in bytes. |
|
1242 | - * Takes into account the PHP ini settings <code>post_max_size</code> |
|
1243 | - * and <code>upload_max_filesize</code>. Since these cannot |
|
1244 | - * be modified at runtime, they are the hard limits for uploads. |
|
1245 | - * |
|
1246 | - * NOTE: Based on binary values, where 1KB = 1024 Bytes. |
|
1247 | - * |
|
1248 | - * @return int Will return <code>-1</code> if no limit. |
|
1249 | - */ |
|
1240 | + /** |
|
1241 | + * Retrieves the maximum allowed upload file size, in bytes. |
|
1242 | + * Takes into account the PHP ini settings <code>post_max_size</code> |
|
1243 | + * and <code>upload_max_filesize</code>. Since these cannot |
|
1244 | + * be modified at runtime, they are the hard limits for uploads. |
|
1245 | + * |
|
1246 | + * NOTE: Based on binary values, where 1KB = 1024 Bytes. |
|
1247 | + * |
|
1248 | + * @return int Will return <code>-1</code> if no limit. |
|
1249 | + */ |
|
1250 | 1250 | public static function getMaxUploadFilesize() : int |
1251 | 1251 | { |
1252 | 1252 | static $max_size = -1; |
@@ -1284,16 +1284,16 @@ discard block |
||
1284 | 1284 | return round($size); |
1285 | 1285 | } |
1286 | 1286 | |
1287 | - /** |
|
1288 | - * Makes a path relative using a folder depth: will reduce the |
|
1289 | - * length of the path so that only the amount of folders defined |
|
1290 | - * in the <code>$depth</code> attribute are shown below the actual |
|
1291 | - * folder or file in the path. |
|
1292 | - * |
|
1293 | - * @param string $path The absolute or relative path |
|
1294 | - * @param int $depth The folder depth to reduce the path to |
|
1295 | - * @return string |
|
1296 | - */ |
|
1287 | + /** |
|
1288 | + * Makes a path relative using a folder depth: will reduce the |
|
1289 | + * length of the path so that only the amount of folders defined |
|
1290 | + * in the <code>$depth</code> attribute are shown below the actual |
|
1291 | + * folder or file in the path. |
|
1292 | + * |
|
1293 | + * @param string $path The absolute or relative path |
|
1294 | + * @param int $depth The folder depth to reduce the path to |
|
1295 | + * @return string |
|
1296 | + */ |
|
1297 | 1297 | public static function relativizePathByDepth(string $path, int $depth=2) : string |
1298 | 1298 | { |
1299 | 1299 | $path = self::normalizePath($path); |
@@ -1331,23 +1331,23 @@ discard block |
||
1331 | 1331 | return trim(implode('/', $tokens), '/'); |
1332 | 1332 | } |
1333 | 1333 | |
1334 | - /** |
|
1335 | - * Makes the specified path relative to another path, |
|
1336 | - * by removing one from the other if found. Also |
|
1337 | - * normalizes the path to use forward slashes. |
|
1338 | - * |
|
1339 | - * Example: |
|
1340 | - * |
|
1341 | - * <pre> |
|
1342 | - * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder'); |
|
1343 | - * </pre> |
|
1344 | - * |
|
1345 | - * Result: <code>to/file.txt</code> |
|
1346 | - * |
|
1347 | - * @param string $path |
|
1348 | - * @param string $relativeTo |
|
1349 | - * @return string |
|
1350 | - */ |
|
1334 | + /** |
|
1335 | + * Makes the specified path relative to another path, |
|
1336 | + * by removing one from the other if found. Also |
|
1337 | + * normalizes the path to use forward slashes. |
|
1338 | + * |
|
1339 | + * Example: |
|
1340 | + * |
|
1341 | + * <pre> |
|
1342 | + * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder'); |
|
1343 | + * </pre> |
|
1344 | + * |
|
1345 | + * Result: <code>to/file.txt</code> |
|
1346 | + * |
|
1347 | + * @param string $path |
|
1348 | + * @param string $relativeTo |
|
1349 | + * @return string |
|
1350 | + */ |
|
1351 | 1351 | public static function relativizePath(string $path, string $relativeTo) : string |
1352 | 1352 | { |
1353 | 1353 | $path = self::normalizePath($path); |
@@ -1359,17 +1359,17 @@ discard block |
||
1359 | 1359 | return $relative; |
1360 | 1360 | } |
1361 | 1361 | |
1362 | - /** |
|
1363 | - * Checks that the target file exists, and throws an exception |
|
1364 | - * if it does not. |
|
1365 | - * |
|
1366 | - * @param string $path |
|
1367 | - * @param int|NULL $errorCode Optional custom error code |
|
1368 | - * @throws FileHelper_Exception |
|
1369 | - * @return string The real path to the file |
|
1370 | - * |
|
1371 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1372 | - */ |
|
1362 | + /** |
|
1363 | + * Checks that the target file exists, and throws an exception |
|
1364 | + * if it does not. |
|
1365 | + * |
|
1366 | + * @param string $path |
|
1367 | + * @param int|NULL $errorCode Optional custom error code |
|
1368 | + * @throws FileHelper_Exception |
|
1369 | + * @return string The real path to the file |
|
1370 | + * |
|
1371 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1372 | + */ |
|
1373 | 1373 | public static function requireFileExists(string $path, ?int $errorCode=null) : string |
1374 | 1374 | { |
1375 | 1375 | $result = realpath($path); |
@@ -1413,18 +1413,18 @@ discard block |
||
1413 | 1413 | ); |
1414 | 1414 | } |
1415 | 1415 | |
1416 | - /** |
|
1417 | - * Reads a specific line number from the target file and returns its |
|
1418 | - * contents, if the file has such a line. Does so with little memory |
|
1419 | - * usage, as the file is not read entirely into memory. |
|
1420 | - * |
|
1421 | - * @param string $path |
|
1422 | - * @param int $lineNumber Note: 1-based; the first line is number 1. |
|
1423 | - * @return string|NULL Will return null if the requested line does not exist. |
|
1424 | - * @throws FileHelper_Exception |
|
1425 | - * |
|
1426 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1427 | - */ |
|
1416 | + /** |
|
1417 | + * Reads a specific line number from the target file and returns its |
|
1418 | + * contents, if the file has such a line. Does so with little memory |
|
1419 | + * usage, as the file is not read entirely into memory. |
|
1420 | + * |
|
1421 | + * @param string $path |
|
1422 | + * @param int $lineNumber Note: 1-based; the first line is number 1. |
|
1423 | + * @return string|NULL Will return null if the requested line does not exist. |
|
1424 | + * @throws FileHelper_Exception |
|
1425 | + * |
|
1426 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1427 | + */ |
|
1428 | 1428 | public static function getLineFromFile(string $path, int $lineNumber) : ?string |
1429 | 1429 | { |
1430 | 1430 | self::requireFileExists($path); |
@@ -1440,19 +1440,19 @@ discard block |
||
1440 | 1440 | $file->seek($targetLine); |
1441 | 1441 | |
1442 | 1442 | if($file->key() !== $targetLine) { |
1443 | - return null; |
|
1443 | + return null; |
|
1444 | 1444 | } |
1445 | 1445 | |
1446 | 1446 | return $file->current(); |
1447 | 1447 | } |
1448 | 1448 | |
1449 | - /** |
|
1450 | - * Retrieves the total amount of lines in the file, without |
|
1451 | - * reading the whole file into memory. |
|
1452 | - * |
|
1453 | - * @param string $path |
|
1454 | - * @return int |
|
1455 | - */ |
|
1449 | + /** |
|
1450 | + * Retrieves the total amount of lines in the file, without |
|
1451 | + * reading the whole file into memory. |
|
1452 | + * |
|
1453 | + * @param string $path |
|
1454 | + * @return int |
|
1455 | + */ |
|
1456 | 1456 | public static function countFileLines(string $path) : int |
1457 | 1457 | { |
1458 | 1458 | self::requireFileExists($path); |
@@ -1482,26 +1482,26 @@ discard block |
||
1482 | 1482 | return $number+1; |
1483 | 1483 | } |
1484 | 1484 | |
1485 | - /** |
|
1486 | - * Parses the target file to detect any PHP classes contained |
|
1487 | - * within, and retrieve information on them. Does not use the |
|
1488 | - * PHP reflection API. |
|
1489 | - * |
|
1490 | - * @param string $filePath |
|
1491 | - * @return FileHelper_PHPClassInfo |
|
1492 | - */ |
|
1485 | + /** |
|
1486 | + * Parses the target file to detect any PHP classes contained |
|
1487 | + * within, and retrieve information on them. Does not use the |
|
1488 | + * PHP reflection API. |
|
1489 | + * |
|
1490 | + * @param string $filePath |
|
1491 | + * @return FileHelper_PHPClassInfo |
|
1492 | + */ |
|
1493 | 1493 | public static function findPHPClasses(string $filePath) : FileHelper_PHPClassInfo |
1494 | 1494 | { |
1495 | 1495 | return new FileHelper_PHPClassInfo($filePath); |
1496 | 1496 | } |
1497 | 1497 | |
1498 | - /** |
|
1499 | - * Detects the end of line style used in the target file, if any. |
|
1500 | - * Can be used with large files, because it only reads part of it. |
|
1501 | - * |
|
1502 | - * @param string $filePath The path to the file. |
|
1503 | - * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found. |
|
1504 | - */ |
|
1498 | + /** |
|
1499 | + * Detects the end of line style used in the target file, if any. |
|
1500 | + * Can be used with large files, because it only reads part of it. |
|
1501 | + * |
|
1502 | + * @param string $filePath The path to the file. |
|
1503 | + * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found. |
|
1504 | + */ |
|
1505 | 1505 | public static function detectEOLCharacter(string $filePath) : ?ConvertHelper_EOL |
1506 | 1506 | { |
1507 | 1507 | // 20 lines is enough to get a good picture of the newline style in the file. |
@@ -1514,18 +1514,18 @@ discard block |
||
1514 | 1514 | return ConvertHelper::detectEOLCharacter($string); |
1515 | 1515 | } |
1516 | 1516 | |
1517 | - /** |
|
1518 | - * Reads the specified amount of lines from the target file. |
|
1519 | - * Unicode BOM compatible: any byte order marker is stripped |
|
1520 | - * from the resulting lines. |
|
1521 | - * |
|
1522 | - * @param string $filePath |
|
1523 | - * @param int $amount Set to 0 to read all lines. |
|
1524 | - * @return array |
|
1525 | - * |
|
1526 | - * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES |
|
1527 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1528 | - */ |
|
1517 | + /** |
|
1518 | + * Reads the specified amount of lines from the target file. |
|
1519 | + * Unicode BOM compatible: any byte order marker is stripped |
|
1520 | + * from the resulting lines. |
|
1521 | + * |
|
1522 | + * @param string $filePath |
|
1523 | + * @param int $amount Set to 0 to read all lines. |
|
1524 | + * @return array |
|
1525 | + * |
|
1526 | + * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES |
|
1527 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1528 | + */ |
|
1529 | 1529 | public static function readLines(string $filePath, int $amount=0) : array |
1530 | 1530 | { |
1531 | 1531 | self::requireFileExists($filePath); |
@@ -1578,16 +1578,16 @@ discard block |
||
1578 | 1578 | return $result; |
1579 | 1579 | } |
1580 | 1580 | |
1581 | - /** |
|
1582 | - * Reads all content from a file. |
|
1583 | - * |
|
1584 | - * @param string $filePath |
|
1585 | - * @throws FileHelper_Exception |
|
1586 | - * @return string |
|
1587 | - * |
|
1588 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1589 | - * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS |
|
1590 | - */ |
|
1581 | + /** |
|
1582 | + * Reads all content from a file. |
|
1583 | + * |
|
1584 | + * @param string $filePath |
|
1585 | + * @throws FileHelper_Exception |
|
1586 | + * @return string |
|
1587 | + * |
|
1588 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
1589 | + * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS |
|
1590 | + */ |
|
1591 | 1591 | public static function readContents(string $filePath) : string |
1592 | 1592 | { |
1593 | 1593 | self::requireFileExists($filePath); |
@@ -1608,18 +1608,18 @@ discard block |
||
1608 | 1608 | ); |
1609 | 1609 | } |
1610 | 1610 | |
1611 | - /** |
|
1612 | - * Ensures that the target path exists on disk, and is a folder. |
|
1613 | - * |
|
1614 | - * @param string $path |
|
1615 | - * @return string The real path, with normalized slashes. |
|
1616 | - * @throws FileHelper_Exception |
|
1617 | - * |
|
1618 | - * @see FileHelper::normalizePath() |
|
1619 | - * |
|
1620 | - * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST |
|
1621 | - * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER |
|
1622 | - */ |
|
1611 | + /** |
|
1612 | + * Ensures that the target path exists on disk, and is a folder. |
|
1613 | + * |
|
1614 | + * @param string $path |
|
1615 | + * @return string The real path, with normalized slashes. |
|
1616 | + * @throws FileHelper_Exception |
|
1617 | + * |
|
1618 | + * @see FileHelper::normalizePath() |
|
1619 | + * |
|
1620 | + * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST |
|
1621 | + * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER |
|
1622 | + */ |
|
1623 | 1623 | public static function requireFolderExists(string $path) : string |
1624 | 1624 | { |
1625 | 1625 | $actual = realpath($path); |
@@ -37,19 +37,19 @@ discard block |
||
37 | 37 | |
38 | 38 | const ERROR_INVALID_SERIALIZED_DATA = 56301; |
39 | 39 | |
40 | - /** |
|
41 | - * @var string |
|
42 | - */ |
|
40 | + /** |
|
41 | + * @var string |
|
42 | + */ |
|
43 | 43 | protected $string; |
44 | 44 | |
45 | - /** |
|
46 | - * @var mixed |
|
47 | - */ |
|
45 | + /** |
|
46 | + * @var mixed |
|
47 | + */ |
|
48 | 48 | protected $value; |
49 | 49 | |
50 | - /** |
|
51 | - * @var string |
|
52 | - */ |
|
50 | + /** |
|
51 | + * @var string |
|
52 | + */ |
|
53 | 53 | protected $type; |
54 | 54 | |
55 | 55 | /** |
@@ -106,15 +106,15 @@ discard block |
||
106 | 106 | return new VariableInfo(null, $serialized); |
107 | 107 | } |
108 | 108 | |
109 | - /** |
|
110 | - * Parses a previously serialized data set to restore the |
|
111 | - * variable information from it. |
|
112 | - * |
|
113 | - * @param array $serialized |
|
114 | - * @throws BaseException |
|
115 | - * |
|
116 | - * @see VariableInfo::ERROR_INVALID_SERIALIZED_DATA |
|
117 | - */ |
|
109 | + /** |
|
110 | + * Parses a previously serialized data set to restore the |
|
111 | + * variable information from it. |
|
112 | + * |
|
113 | + * @param array $serialized |
|
114 | + * @throws BaseException |
|
115 | + * |
|
116 | + * @see VariableInfo::ERROR_INVALID_SERIALIZED_DATA |
|
117 | + */ |
|
118 | 118 | protected function parseSerialized(array $serialized) : void |
119 | 119 | { |
120 | 120 | if(!isset($serialized['string']) || !isset($serialized['type']) || !isset($serialized['options'])) |
@@ -156,12 +156,12 @@ discard block |
||
156 | 156 | return $this->value; |
157 | 157 | } |
158 | 158 | |
159 | - /** |
|
160 | - * The variable type - this is the same string that |
|
161 | - * is returned by the PHP function `gettype`. |
|
162 | - * |
|
163 | - * @return string |
|
164 | - */ |
|
159 | + /** |
|
160 | + * The variable type - this is the same string that |
|
161 | + * is returned by the PHP function `gettype`. |
|
162 | + * |
|
163 | + * @return string |
|
164 | + */ |
|
165 | 165 | public function getType() : string |
166 | 166 | { |
167 | 167 | return $this->type; |
@@ -175,13 +175,13 @@ discard block |
||
175 | 175 | ); |
176 | 176 | } |
177 | 177 | |
178 | - /** |
|
179 | - * Whether to prepend the variable type before the value, |
|
180 | - * like the var_dump function. Example: <code>string "Some text"</code>. |
|
181 | - * |
|
182 | - * @param bool $enable |
|
183 | - * @return VariableInfo |
|
184 | - */ |
|
178 | + /** |
|
179 | + * Whether to prepend the variable type before the value, |
|
180 | + * like the var_dump function. Example: <code>string "Some text"</code>. |
|
181 | + * |
|
182 | + * @param bool $enable |
|
183 | + * @return VariableInfo |
|
184 | + */ |
|
185 | 185 | public function enableType(bool $enable=true) : VariableInfo |
186 | 186 | { |
187 | 187 | return $this->setOption('prepend-type', $enable); |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | */ |
27 | 27 | trait Traits_Optionable |
28 | 28 | { |
29 | - /** |
|
30 | - * @var array |
|
31 | - */ |
|
29 | + /** |
|
30 | + * @var array |
|
31 | + */ |
|
32 | 32 | protected $options; |
33 | 33 | |
34 | 34 | /** |
@@ -49,13 +49,13 @@ discard block |
||
49 | 49 | return $this; |
50 | 50 | } |
51 | 51 | |
52 | - /** |
|
53 | - * Sets a collection of options at once, from an |
|
54 | - * associative array. |
|
55 | - * |
|
56 | - * @param array<string,mixed> $options |
|
57 | - * @return $this |
|
58 | - */ |
|
52 | + /** |
|
53 | + * Sets a collection of options at once, from an |
|
54 | + * associative array. |
|
55 | + * |
|
56 | + * @param array<string,mixed> $options |
|
57 | + * @return $this |
|
58 | + */ |
|
59 | 59 | public function setOptions(array $options) |
60 | 60 | { |
61 | 61 | foreach($options as $name => $value) { |
@@ -65,16 +65,16 @@ discard block |
||
65 | 65 | return $this; |
66 | 66 | } |
67 | 67 | |
68 | - /** |
|
69 | - * Retrieves an option's value. |
|
70 | - * |
|
71 | - * NOTE: Use the specialized type getters to ensure an option |
|
72 | - * contains the expected type (for ex. getArrayOption()). |
|
73 | - * |
|
74 | - * @param string $name |
|
75 | - * @param mixed $default The default value to return if the option does not exist. |
|
76 | - * @return mixed |
|
77 | - */ |
|
68 | + /** |
|
69 | + * Retrieves an option's value. |
|
70 | + * |
|
71 | + * NOTE: Use the specialized type getters to ensure an option |
|
72 | + * contains the expected type (for ex. getArrayOption()). |
|
73 | + * |
|
74 | + * @param string $name |
|
75 | + * @param mixed $default The default value to return if the option does not exist. |
|
76 | + * @return mixed |
|
77 | + */ |
|
78 | 78 | public function getOption(string $name, $default=null) |
79 | 79 | { |
80 | 80 | if(!isset($this->options)) { |
@@ -88,16 +88,16 @@ discard block |
||
88 | 88 | return $default; |
89 | 89 | } |
90 | 90 | |
91 | - /** |
|
92 | - * Enforces that the option value is a string. Numbers are converted |
|
93 | - * to string, strings are passed through, and all other types will |
|
94 | - * return the default value. The default value is also returned if |
|
95 | - * the string is empty. |
|
96 | - * |
|
97 | - * @param string $name |
|
98 | - * @param string $default Used if the option does not exist, is invalid, or empty. |
|
99 | - * @return string |
|
100 | - */ |
|
91 | + /** |
|
92 | + * Enforces that the option value is a string. Numbers are converted |
|
93 | + * to string, strings are passed through, and all other types will |
|
94 | + * return the default value. The default value is also returned if |
|
95 | + * the string is empty. |
|
96 | + * |
|
97 | + * @param string $name |
|
98 | + * @param string $default Used if the option does not exist, is invalid, or empty. |
|
99 | + * @return string |
|
100 | + */ |
|
101 | 101 | public function getStringOption(string $name, string $default='') : string |
102 | 102 | { |
103 | 103 | $value = $this->getOption($name, false); |
@@ -128,15 +128,15 @@ discard block |
||
128 | 128 | return $default; |
129 | 129 | } |
130 | 130 | |
131 | - /** |
|
132 | - * Treats the option value as an integer value: will return |
|
133 | - * valid integer values (also from integer strings), or the |
|
134 | - * default value otherwise. |
|
135 | - * |
|
136 | - * @param string $name |
|
137 | - * @param int $default |
|
138 | - * @return int |
|
139 | - */ |
|
131 | + /** |
|
132 | + * Treats the option value as an integer value: will return |
|
133 | + * valid integer values (also from integer strings), or the |
|
134 | + * default value otherwise. |
|
135 | + * |
|
136 | + * @param string $name |
|
137 | + * @param int $default |
|
138 | + * @return int |
|
139 | + */ |
|
140 | 140 | public function getIntOption(string $name, int $default=0) : int |
141 | 141 | { |
142 | 142 | $value = $this->getOption($name); |
@@ -147,14 +147,14 @@ discard block |
||
147 | 147 | return $default; |
148 | 148 | } |
149 | 149 | |
150 | - /** |
|
151 | - * Treats an option as an array, and returns its value |
|
152 | - * only if it contains an array - otherwise, an empty |
|
153 | - * array is returned. |
|
154 | - * |
|
155 | - * @param string $name |
|
156 | - * @return array |
|
157 | - */ |
|
150 | + /** |
|
151 | + * Treats an option as an array, and returns its value |
|
152 | + * only if it contains an array - otherwise, an empty |
|
153 | + * array is returned. |
|
154 | + * |
|
155 | + * @param string $name |
|
156 | + * @return array |
|
157 | + */ |
|
158 | 158 | public function getArrayOption(string $name) : array |
159 | 159 | { |
160 | 160 | $val = $this->getOption($name); |
@@ -165,13 +165,13 @@ discard block |
||
165 | 165 | return array(); |
166 | 166 | } |
167 | 167 | |
168 | - /** |
|
169 | - * Checks whether the specified option exists - even |
|
170 | - * if it has a NULL value. |
|
171 | - * |
|
172 | - * @param string $name |
|
173 | - * @return bool |
|
174 | - */ |
|
168 | + /** |
|
169 | + * Checks whether the specified option exists - even |
|
170 | + * if it has a NULL value. |
|
171 | + * |
|
172 | + * @param string $name |
|
173 | + * @return bool |
|
174 | + */ |
|
175 | 175 | public function hasOption(string $name) : bool |
176 | 176 | { |
177 | 177 | if(!isset($this->options)) { |
@@ -181,11 +181,11 @@ discard block |
||
181 | 181 | return array_key_exists($name, $this->options); |
182 | 182 | } |
183 | 183 | |
184 | - /** |
|
185 | - * Returns all options in one associative array. |
|
186 | - * |
|
187 | - * @return array<string,mixed> |
|
188 | - */ |
|
184 | + /** |
|
185 | + * Returns all options in one associative array. |
|
186 | + * |
|
187 | + * @return array<string,mixed> |
|
188 | + */ |
|
189 | 189 | public function getOptions() : array |
190 | 190 | { |
191 | 191 | if(!isset($this->options)) { |
@@ -195,23 +195,23 @@ discard block |
||
195 | 195 | return $this->options; |
196 | 196 | } |
197 | 197 | |
198 | - /** |
|
199 | - * Checks whether the option's value is the one specified. |
|
200 | - * |
|
201 | - * @param string $name |
|
202 | - * @param mixed $value |
|
203 | - * @return bool |
|
204 | - */ |
|
198 | + /** |
|
199 | + * Checks whether the option's value is the one specified. |
|
200 | + * |
|
201 | + * @param string $name |
|
202 | + * @param mixed $value |
|
203 | + * @return bool |
|
204 | + */ |
|
205 | 205 | public function isOption(string $name, $value) : bool |
206 | 206 | { |
207 | 207 | return $this->getOption($name) === $value; |
208 | 208 | } |
209 | 209 | |
210 | - /** |
|
211 | - * Retrieves the default available options as an |
|
212 | - * associative array with option name => value pairs. |
|
213 | - * |
|
214 | - * @return array<string,mixed> |
|
215 | - */ |
|
210 | + /** |
|
211 | + * Retrieves the default available options as an |
|
212 | + * associative array with option name => value pairs. |
|
213 | + * |
|
214 | + * @return array<string,mixed> |
|
215 | + */ |
|
216 | 216 | abstract public function getDefaultOptions() : array; |
217 | 217 | } |
@@ -25,9 +25,9 @@ discard block |
||
25 | 25 | */ |
26 | 26 | trait Traits_Classable |
27 | 27 | { |
28 | - /** |
|
29 | - * @var string[] |
|
30 | - */ |
|
28 | + /** |
|
29 | + * @var string[] |
|
30 | + */ |
|
31 | 31 | protected $classes = array(); |
32 | 32 | |
33 | 33 | public function addClass(string $name) |
@@ -65,30 +65,30 @@ discard block |
||
65 | 65 | return $this; |
66 | 66 | } |
67 | 67 | |
68 | - /** |
|
69 | - * Retrieves a list of all classes, if any. |
|
70 | - * |
|
71 | - * @return string[] |
|
72 | - */ |
|
68 | + /** |
|
69 | + * Retrieves a list of all classes, if any. |
|
70 | + * |
|
71 | + * @return string[] |
|
72 | + */ |
|
73 | 73 | public function getClasses() : array |
74 | 74 | { |
75 | 75 | return $this->classes; |
76 | 76 | } |
77 | 77 | |
78 | - /** |
|
79 | - * Renders the class names list as space-separated string for use in an HTML tag. |
|
80 | - * |
|
81 | - * @return string |
|
82 | - */ |
|
78 | + /** |
|
79 | + * Renders the class names list as space-separated string for use in an HTML tag. |
|
80 | + * |
|
81 | + * @return string |
|
82 | + */ |
|
83 | 83 | public function classesToString() : string |
84 | 84 | { |
85 | 85 | return implode(' ', $this->classes); |
86 | 86 | } |
87 | 87 | |
88 | - /** |
|
89 | - * Renders the "class" attribute string for inserting into an HTML tag. |
|
90 | - * @return string |
|
91 | - */ |
|
88 | + /** |
|
89 | + * Renders the "class" attribute string for inserting into an HTML tag. |
|
90 | + * @return string |
|
91 | + */ |
|
92 | 92 | public function classesToAttribute() : string |
93 | 93 | { |
94 | 94 | if(!empty($this->classes)) |
@@ -33,24 +33,24 @@ discard block |
||
33 | 33 | */ |
34 | 34 | class StringBuilder implements StringBuilder_Interface |
35 | 35 | { |
36 | - /** |
|
37 | - * @var string |
|
38 | - */ |
|
36 | + /** |
|
37 | + * @var string |
|
38 | + */ |
|
39 | 39 | protected $separator = ' '; |
40 | 40 | |
41 | - /** |
|
42 | - * @var string[] |
|
43 | - */ |
|
41 | + /** |
|
42 | + * @var string[] |
|
43 | + */ |
|
44 | 44 | protected $strings = array(); |
45 | 45 | |
46 | - /** |
|
47 | - * @var string |
|
48 | - */ |
|
46 | + /** |
|
47 | + * @var string |
|
48 | + */ |
|
49 | 49 | protected $mode = 'html'; |
50 | 50 | |
51 | - /** |
|
52 | - * @var string |
|
53 | - */ |
|
51 | + /** |
|
52 | + * @var string |
|
53 | + */ |
|
54 | 54 | protected $noSpace = '§!§'; |
55 | 55 | |
56 | 56 | public function __construct() |
@@ -58,12 +58,12 @@ discard block |
||
58 | 58 | |
59 | 59 | } |
60 | 60 | |
61 | - /** |
|
62 | - * Adds a subject as a string. Is ignored if empty. |
|
63 | - * |
|
64 | - * @param string|number|StringBuilder_Interface $string |
|
65 | - * @return $this |
|
66 | - */ |
|
61 | + /** |
|
62 | + * Adds a subject as a string. Is ignored if empty. |
|
63 | + * |
|
64 | + * @param string|number|StringBuilder_Interface $string |
|
65 | + * @return $this |
|
66 | + */ |
|
67 | 67 | public function add($string) : StringBuilder |
68 | 68 | { |
69 | 69 | $string = strval($string); |
@@ -76,57 +76,57 @@ discard block |
||
76 | 76 | return $this; |
77 | 77 | } |
78 | 78 | |
79 | - /** |
|
80 | - * Adds a string without appending an automatic space. |
|
81 | - * |
|
82 | - * @param string|number|StringBuilder_Interface $string |
|
83 | - * @return $this |
|
84 | - */ |
|
79 | + /** |
|
80 | + * Adds a string without appending an automatic space. |
|
81 | + * |
|
82 | + * @param string|number|StringBuilder_Interface $string |
|
83 | + * @return $this |
|
84 | + */ |
|
85 | 85 | public function nospace($string) : StringBuilder |
86 | 86 | { |
87 | 87 | return $this->add($this->noSpace.strval($string)); |
88 | 88 | } |
89 | 89 | |
90 | - /** |
|
91 | - * Adds raw HTML code. Does not add an automatic space. |
|
92 | - * |
|
93 | - * @param string|number|StringBuilder_Interface $html |
|
94 | - * @return $this |
|
95 | - */ |
|
90 | + /** |
|
91 | + * Adds raw HTML code. Does not add an automatic space. |
|
92 | + * |
|
93 | + * @param string|number|StringBuilder_Interface $html |
|
94 | + * @return $this |
|
95 | + */ |
|
96 | 96 | public function html($html) : StringBuilder |
97 | 97 | { |
98 | 98 | return $this->nospace($html); |
99 | 99 | } |
100 | 100 | |
101 | - /** |
|
102 | - * Adds an unordered list with the specified items. |
|
103 | - * |
|
104 | - * @param array<int,string|number|StringBuilder_Interface> $items |
|
105 | - * @return $this |
|
106 | - */ |
|
101 | + /** |
|
102 | + * Adds an unordered list with the specified items. |
|
103 | + * |
|
104 | + * @param array<int,string|number|StringBuilder_Interface> $items |
|
105 | + * @return $this |
|
106 | + */ |
|
107 | 107 | public function ul(array $items) : StringBuilder |
108 | 108 | { |
109 | 109 | return $this->list('ul', $items); |
110 | 110 | } |
111 | 111 | |
112 | - /** |
|
113 | - * Adds an ordered list with the specified items. |
|
114 | - * |
|
115 | - * @param array<int,string|number|StringBuilder_Interface> $items |
|
116 | - * @return $this |
|
117 | - */ |
|
112 | + /** |
|
113 | + * Adds an ordered list with the specified items. |
|
114 | + * |
|
115 | + * @param array<int,string|number|StringBuilder_Interface> $items |
|
116 | + * @return $this |
|
117 | + */ |
|
118 | 118 | public function ol(array $items) : StringBuilder |
119 | 119 | { |
120 | 120 | return $this->list('ol', $items); |
121 | 121 | } |
122 | 122 | |
123 | - /** |
|
124 | - * Creates a list tag with the items list. |
|
125 | - * |
|
126 | - * @param string $type The list type, `ol` or `ul`. |
|
127 | - * @param array<int,string|number|StringBuilder_Interface> $items |
|
128 | - * @return $this |
|
129 | - */ |
|
123 | + /** |
|
124 | + * Creates a list tag with the items list. |
|
125 | + * |
|
126 | + * @param string $type The list type, `ol` or `ul`. |
|
127 | + * @param array<int,string|number|StringBuilder_Interface> $items |
|
128 | + * @return $this |
|
129 | + */ |
|
130 | 130 | protected function list(string $type, array $items) : StringBuilder |
131 | 131 | { |
132 | 132 | return $this->html(sprintf( |
@@ -136,13 +136,13 @@ discard block |
||
136 | 136 | )); |
137 | 137 | } |
138 | 138 | |
139 | - /** |
|
140 | - * Add a translated string. |
|
141 | - * |
|
142 | - * @param string $format The native string to translate. |
|
143 | - * @param array<int,mixed> $arguments The variables to inject into the translated string, if any. |
|
144 | - * @return $this |
|
145 | - */ |
|
139 | + /** |
|
140 | + * Add a translated string. |
|
141 | + * |
|
142 | + * @param string $format The native string to translate. |
|
143 | + * @param array<int,mixed> $arguments The variables to inject into the translated string, if any. |
|
144 | + * @return $this |
|
145 | + */ |
|
146 | 146 | public function t(string $format, ...$arguments) : StringBuilder |
147 | 147 | { |
148 | 148 | array_unshift($arguments, $format); |
@@ -158,47 +158,47 @@ discard block |
||
158 | 158 | )); |
159 | 159 | } |
160 | 160 | |
161 | - /** |
|
162 | - * Adds a "5 months ago" age since the specified date. |
|
163 | - * |
|
164 | - * @param DateTime $since |
|
165 | - * @return $this |
|
166 | - */ |
|
161 | + /** |
|
162 | + * Adds a "5 months ago" age since the specified date. |
|
163 | + * |
|
164 | + * @param DateTime $since |
|
165 | + * @return $this |
|
166 | + */ |
|
167 | 167 | public function age(DateTime $since) : StringBuilder |
168 | 168 | { |
169 | 169 | return $this->add(ConvertHelper::duration2string($since)); |
170 | 170 | } |
171 | 171 | |
172 | - /** |
|
173 | - * Adds HTML quotes around the string. |
|
174 | - * |
|
175 | - * @param string|number|StringBuilder_Interface $string |
|
176 | - * @return $this |
|
177 | - */ |
|
172 | + /** |
|
173 | + * Adds HTML quotes around the string. |
|
174 | + * |
|
175 | + * @param string|number|StringBuilder_Interface $string |
|
176 | + * @return $this |
|
177 | + */ |
|
178 | 178 | public function quote($string) |
179 | 179 | { |
180 | 180 | return $this->sf('"%s"', strval($string)); |
181 | 181 | } |
182 | 182 | |
183 | - /** |
|
184 | - * Adds a text that is meant as a reference to an UI element, |
|
185 | - * like a menu item, button, etc. |
|
186 | - * |
|
187 | - * @param string|number|StringBuilder_Interface $string |
|
188 | - * @return $this |
|
189 | - */ |
|
183 | + /** |
|
184 | + * Adds a text that is meant as a reference to an UI element, |
|
185 | + * like a menu item, button, etc. |
|
186 | + * |
|
187 | + * @param string|number|StringBuilder_Interface $string |
|
188 | + * @return $this |
|
189 | + */ |
|
190 | 190 | public function reference($string) : StringBuilder |
191 | 191 | { |
192 | 192 | return $this->sf('"%s"', $string); |
193 | 193 | } |
194 | 194 | |
195 | - /** |
|
196 | - * Add a string using the `sprintf` method. |
|
197 | - * |
|
198 | - * @param string $format The format string |
|
199 | - * @param string|number|StringBuilder_Interface ...$arguments The variables to inject |
|
200 | - * @return $this |
|
201 | - */ |
|
195 | + /** |
|
196 | + * Add a string using the `sprintf` method. |
|
197 | + * |
|
198 | + * @param string $format The format string |
|
199 | + * @param string|number|StringBuilder_Interface ...$arguments The variables to inject |
|
200 | + * @return $this |
|
201 | + */ |
|
202 | 202 | public function sf(string $format, ...$arguments) : StringBuilder |
203 | 203 | { |
204 | 204 | array_unshift($arguments, $format); |
@@ -206,12 +206,12 @@ discard block |
||
206 | 206 | return $this->add(call_user_func_array('sprintf', $arguments)); |
207 | 207 | } |
208 | 208 | |
209 | - /** |
|
210 | - * Adds a bold string. |
|
211 | - * |
|
212 | - * @param string|number|StringBuilder_Interface $string |
|
213 | - * @return $this |
|
214 | - */ |
|
209 | + /** |
|
210 | + * Adds a bold string. |
|
211 | + * |
|
212 | + * @param string|number|StringBuilder_Interface $string |
|
213 | + * @return $this |
|
214 | + */ |
|
215 | 215 | public function bold($string) : StringBuilder |
216 | 216 | { |
217 | 217 | return $this->sf( |
@@ -220,12 +220,12 @@ discard block |
||
220 | 220 | ); |
221 | 221 | } |
222 | 222 | |
223 | - /** |
|
224 | - * Adds a HTML `br` tag. |
|
225 | - * |
|
226 | - * @return $this |
|
227 | - * @see StringBuilder::eol() |
|
228 | - */ |
|
223 | + /** |
|
224 | + * Adds a HTML `br` tag. |
|
225 | + * |
|
226 | + * @return $this |
|
227 | + * @see StringBuilder::eol() |
|
228 | + */ |
|
229 | 229 | public function nl() : StringBuilder |
230 | 230 | { |
231 | 231 | return $this->html('<br>'); |
@@ -242,41 +242,41 @@ discard block |
||
242 | 242 | return $this->nospace(PHP_EOL); |
243 | 243 | } |
244 | 244 | |
245 | - /** |
|
246 | - * Adds the current time, in the format <code>H:i:s</code>. |
|
247 | - * |
|
248 | - * @return $this |
|
249 | - */ |
|
245 | + /** |
|
246 | + * Adds the current time, in the format <code>H:i:s</code>. |
|
247 | + * |
|
248 | + * @return $this |
|
249 | + */ |
|
250 | 250 | public function time() : StringBuilder |
251 | 251 | { |
252 | 252 | return $this->add(date('H:i:s')); |
253 | 253 | } |
254 | 254 | |
255 | - /** |
|
256 | - * Adds the "Note:" text. |
|
257 | - * |
|
258 | - * @return $this |
|
259 | - */ |
|
255 | + /** |
|
256 | + * Adds the "Note:" text. |
|
257 | + * |
|
258 | + * @return $this |
|
259 | + */ |
|
260 | 260 | public function note() : StringBuilder |
261 | 261 | { |
262 | 262 | return $this->t('Note:'); |
263 | 263 | } |
264 | 264 | |
265 | - /** |
|
266 | - * Like `note()`, but as bold text. |
|
267 | - * |
|
268 | - * @return $this |
|
269 | - */ |
|
265 | + /** |
|
266 | + * Like `note()`, but as bold text. |
|
267 | + * |
|
268 | + * @return $this |
|
269 | + */ |
|
270 | 270 | public function noteBold() : StringBuilder |
271 | 271 | { |
272 | 272 | return $this->bold(sb()->note()); |
273 | 273 | } |
274 | 274 | |
275 | - /** |
|
276 | - * Adds the "Hint:" text. |
|
277 | - * |
|
278 | - * @return $this |
|
279 | - */ |
|
275 | + /** |
|
276 | + * Adds the "Hint:" text. |
|
277 | + * |
|
278 | + * @return $this |
|
279 | + */ |
|
280 | 280 | public function hint() : StringBuilder |
281 | 281 | { |
282 | 282 | return $this->t('Hint:'); |
@@ -287,12 +287,12 @@ discard block |
||
287 | 287 | return $this->bold(sb()->hint()); |
288 | 288 | } |
289 | 289 | |
290 | - /** |
|
291 | - * Adds two linebreaks. |
|
292 | - * |
|
293 | - * @param StringBuilder_Interface|string|NULL $content |
|
294 | - * @return $this |
|
295 | - */ |
|
290 | + /** |
|
291 | + * Adds two linebreaks. |
|
292 | + * |
|
293 | + * @param StringBuilder_Interface|string|NULL $content |
|
294 | + * @return $this |
|
295 | + */ |
|
296 | 296 | public function para($content=null) : StringBuilder |
297 | 297 | { |
298 | 298 | if($content !== null) { |
@@ -302,14 +302,14 @@ discard block |
||
302 | 302 | return $this->nl()->nl(); |
303 | 303 | } |
304 | 304 | |
305 | - /** |
|
306 | - * Adds an anchor HTML tag. |
|
307 | - * |
|
308 | - * @param string $label |
|
309 | - * @param string $url |
|
310 | - * @param bool $newTab |
|
311 | - * @return $this |
|
312 | - */ |
|
305 | + /** |
|
306 | + * Adds an anchor HTML tag. |
|
307 | + * |
|
308 | + * @param string $label |
|
309 | + * @param string $url |
|
310 | + * @param bool $newTab |
|
311 | + * @return $this |
|
312 | + */ |
|
313 | 313 | public function link(string $label, string $url, bool $newTab=false) : StringBuilder |
314 | 314 | { |
315 | 315 | $target = ''; |
@@ -325,12 +325,12 @@ discard block |
||
325 | 325 | ); |
326 | 326 | } |
327 | 327 | |
328 | - /** |
|
329 | - * Wraps the string in a `code` tag. |
|
330 | - * |
|
331 | - * @param string|number|StringBuilder_Interface $string |
|
332 | - * @return $this |
|
333 | - */ |
|
328 | + /** |
|
329 | + * Wraps the string in a `code` tag. |
|
330 | + * |
|
331 | + * @param string|number|StringBuilder_Interface $string |
|
332 | + * @return $this |
|
333 | + */ |
|
334 | 334 | public function code($string) : StringBuilder |
335 | 335 | { |
336 | 336 | return $this->sf( |
@@ -339,24 +339,24 @@ discard block |
||
339 | 339 | ); |
340 | 340 | } |
341 | 341 | |
342 | - /** |
|
343 | - * Wraps the string in a `pre` tag. |
|
344 | - * |
|
345 | - * @param string|number|StringBuilder_Interface $string |
|
346 | - * @return $this |
|
347 | - */ |
|
342 | + /** |
|
343 | + * Wraps the string in a `pre` tag. |
|
344 | + * |
|
345 | + * @param string|number|StringBuilder_Interface $string |
|
346 | + * @return $this |
|
347 | + */ |
|
348 | 348 | public function pre($string) : StringBuilder |
349 | 349 | { |
350 | 350 | return $this->sf('<pre>%s</pre>', strval($string)); |
351 | 351 | } |
352 | 352 | |
353 | - /** |
|
354 | - * Wraps the text in a `span` tag with the specified classes. |
|
355 | - * |
|
356 | - * @param string|number|StringBuilder_Interface $string |
|
357 | - * @param string|string[] $classes |
|
358 | - * @return $this |
|
359 | - */ |
|
353 | + /** |
|
354 | + * Wraps the text in a `span` tag with the specified classes. |
|
355 | + * |
|
356 | + * @param string|number|StringBuilder_Interface $string |
|
357 | + * @param string|string[] $classes |
|
358 | + * @return $this |
|
359 | + */ |
|
360 | 360 | public function spanned($string, $classes) : StringBuilder |
361 | 361 | { |
362 | 362 | if(!is_array($classes)) |
@@ -34,42 +34,42 @@ discard block |
||
34 | 34 | const TYPE_PHONE = 'phone'; |
35 | 35 | const TYPE_URL = 'url'; |
36 | 36 | |
37 | - /** |
|
38 | - * The original URL that was passed to the constructor. |
|
39 | - * @var string |
|
40 | - */ |
|
37 | + /** |
|
38 | + * The original URL that was passed to the constructor. |
|
39 | + * @var string |
|
40 | + */ |
|
41 | 41 | protected $rawURL; |
42 | 42 | |
43 | - /** |
|
44 | - * @var array |
|
45 | - */ |
|
43 | + /** |
|
44 | + * @var array |
|
45 | + */ |
|
46 | 46 | protected $info; |
47 | 47 | |
48 | - /** |
|
49 | - * @var string[] |
|
50 | - */ |
|
48 | + /** |
|
49 | + * @var string[] |
|
50 | + */ |
|
51 | 51 | protected $excludedParams = array(); |
52 | 52 | |
53 | - /** |
|
54 | - * @var bool |
|
55 | - * @see URLInfo::setParamExclusion() |
|
56 | - */ |
|
53 | + /** |
|
54 | + * @var bool |
|
55 | + * @see URLInfo::setParamExclusion() |
|
56 | + */ |
|
57 | 57 | protected $paramExclusion = false; |
58 | 58 | |
59 | - /** |
|
60 | - * @var array |
|
61 | - * @see URLInfo::getTypeLabel() |
|
62 | - */ |
|
59 | + /** |
|
60 | + * @var array |
|
61 | + * @see URLInfo::getTypeLabel() |
|
62 | + */ |
|
63 | 63 | protected static $typeLabels; |
64 | 64 | |
65 | - /** |
|
66 | - * @var bool |
|
67 | - */ |
|
65 | + /** |
|
66 | + * @var bool |
|
67 | + */ |
|
68 | 68 | protected $highlightExcluded = false; |
69 | 69 | |
70 | - /** |
|
71 | - * @var array |
|
72 | - */ |
|
70 | + /** |
|
71 | + * @var array |
|
72 | + */ |
|
73 | 73 | protected $infoKeys = array( |
74 | 74 | 'scheme', |
75 | 75 | 'host', |
@@ -81,24 +81,24 @@ discard block |
||
81 | 81 | 'fragment' |
82 | 82 | ); |
83 | 83 | |
84 | - /** |
|
85 | - * @var string |
|
86 | - */ |
|
84 | + /** |
|
85 | + * @var string |
|
86 | + */ |
|
87 | 87 | protected $url; |
88 | 88 | |
89 | - /** |
|
90 | - * @var URLInfo_Parser |
|
91 | - */ |
|
89 | + /** |
|
90 | + * @var URLInfo_Parser |
|
91 | + */ |
|
92 | 92 | protected $parser; |
93 | 93 | |
94 | - /** |
|
95 | - * @var URLInfo_Normalizer |
|
96 | - */ |
|
94 | + /** |
|
95 | + * @var URLInfo_Normalizer |
|
96 | + */ |
|
97 | 97 | protected $normalizer; |
98 | 98 | |
99 | - /** |
|
100 | - * @var bool |
|
101 | - */ |
|
99 | + /** |
|
100 | + * @var bool |
|
101 | + */ |
|
102 | 102 | protected $encodeUTFChars = false; |
103 | 103 | |
104 | 104 | public function __construct(string $url) |
@@ -115,14 +115,14 @@ discard block |
||
115 | 115 | $this->info = $this->parser->getInfo(); |
116 | 116 | } |
117 | 117 | |
118 | - /** |
|
119 | - * Whether to URL encode any non-encoded UTF8 characters in the URL. |
|
120 | - * Default is to leave them as-is for better readability, since |
|
121 | - * browsers handle this well. |
|
122 | - * |
|
123 | - * @param bool $enabled |
|
124 | - * @return URLInfo |
|
125 | - */ |
|
118 | + /** |
|
119 | + * Whether to URL encode any non-encoded UTF8 characters in the URL. |
|
120 | + * Default is to leave them as-is for better readability, since |
|
121 | + * browsers handle this well. |
|
122 | + * |
|
123 | + * @param bool $enabled |
|
124 | + * @return URLInfo |
|
125 | + */ |
|
126 | 126 | public function setUTFEncoding(bool $enabled=true) : URLInfo |
127 | 127 | { |
128 | 128 | if($this->encodeUTFChars !== $enabled) |
@@ -139,13 +139,13 @@ discard block |
||
139 | 139 | return $this->encodeUTFChars; |
140 | 140 | } |
141 | 141 | |
142 | - /** |
|
143 | - * Filters an URL: removes control characters and the |
|
144 | - * like to have a clean URL to work with. |
|
145 | - * |
|
146 | - * @param string $url |
|
147 | - * @return string |
|
148 | - */ |
|
142 | + /** |
|
143 | + * Filters an URL: removes control characters and the |
|
144 | + * like to have a clean URL to work with. |
|
145 | + * |
|
146 | + * @param string $url |
|
147 | + * @return string |
|
148 | + */ |
|
149 | 149 | public static function filterURL(string $url) |
150 | 150 | { |
151 | 151 | return URLInfo_Filter::filter($url); |
@@ -175,12 +175,12 @@ discard block |
||
175 | 175 | return $this->info['type'] === self::TYPE_PHONE; |
176 | 176 | } |
177 | 177 | |
178 | - /** |
|
179 | - * Whether the URL is a regular URL, not one of the |
|
180 | - * other types like a phone number or email address. |
|
181 | - * |
|
182 | - * @return bool |
|
183 | - */ |
|
178 | + /** |
|
179 | + * Whether the URL is a regular URL, not one of the |
|
180 | + * other types like a phone number or email address. |
|
181 | + * |
|
182 | + * @return bool |
|
183 | + */ |
|
184 | 184 | public function isURL() : bool |
185 | 185 | { |
186 | 186 | $host = $this->getHost(); |
@@ -192,20 +192,20 @@ discard block |
||
192 | 192 | return $this->parser->isValid(); |
193 | 193 | } |
194 | 194 | |
195 | - /** |
|
196 | - * Retrieves the host name, or an empty string if none is present. |
|
197 | - * |
|
198 | - * @return string |
|
199 | - */ |
|
195 | + /** |
|
196 | + * Retrieves the host name, or an empty string if none is present. |
|
197 | + * |
|
198 | + * @return string |
|
199 | + */ |
|
200 | 200 | public function getHost() : string |
201 | 201 | { |
202 | 202 | return $this->getInfoKey('host'); |
203 | 203 | } |
204 | 204 | |
205 | - /** |
|
206 | - * Retrieves the path, or an empty string if none is present. |
|
207 | - * @return string |
|
208 | - */ |
|
205 | + /** |
|
206 | + * Retrieves the path, or an empty string if none is present. |
|
207 | + * @return string |
|
208 | + */ |
|
209 | 209 | public function getPath() : string |
210 | 210 | { |
211 | 211 | return $this->getInfoKey('path'); |
@@ -221,10 +221,10 @@ discard block |
||
221 | 221 | return $this->getInfoKey('scheme'); |
222 | 222 | } |
223 | 223 | |
224 | - /** |
|
225 | - * Retrieves the port specified in the URL, or -1 if none is preseent. |
|
226 | - * @return int |
|
227 | - */ |
|
224 | + /** |
|
225 | + * Retrieves the port specified in the URL, or -1 if none is preseent. |
|
226 | + * @return int |
|
227 | + */ |
|
228 | 228 | public function getPort() : int |
229 | 229 | { |
230 | 230 | $port = $this->getInfoKey('port'); |
@@ -236,13 +236,13 @@ discard block |
||
236 | 236 | return -1; |
237 | 237 | } |
238 | 238 | |
239 | - /** |
|
240 | - * Retrieves the raw query string, or an empty string if none is present. |
|
241 | - * |
|
242 | - * @return string |
|
243 | - * |
|
244 | - * @see URLInfo::getParams() |
|
245 | - */ |
|
239 | + /** |
|
240 | + * Retrieves the raw query string, or an empty string if none is present. |
|
241 | + * |
|
242 | + * @return string |
|
243 | + * |
|
244 | + * @see URLInfo::getParams() |
|
245 | + */ |
|
246 | 246 | public function getQuery() : string |
247 | 247 | { |
248 | 248 | return $this->getInfoKey('query'); |
@@ -258,20 +258,20 @@ discard block |
||
258 | 258 | return $this->getInfoKey('pass'); |
259 | 259 | } |
260 | 260 | |
261 | - /** |
|
262 | - * Whether the URL contains a port number. |
|
263 | - * @return bool |
|
264 | - */ |
|
261 | + /** |
|
262 | + * Whether the URL contains a port number. |
|
263 | + * @return bool |
|
264 | + */ |
|
265 | 265 | public function hasPort() : bool |
266 | 266 | { |
267 | 267 | return $this->getPort() !== -1; |
268 | 268 | } |
269 | 269 | |
270 | - /** |
|
271 | - * Alias for the hasParams() method. |
|
272 | - * @return bool |
|
273 | - * @see URLInfo::hasParams() |
|
274 | - */ |
|
270 | + /** |
|
271 | + * Alias for the hasParams() method. |
|
272 | + * @return bool |
|
273 | + * @see URLInfo::hasParams() |
|
274 | + */ |
|
275 | 275 | public function hasQuery() : bool |
276 | 276 | { |
277 | 277 | return $this->hasParams(); |
@@ -316,23 +316,23 @@ discard block |
||
316 | 316 | return ''; |
317 | 317 | } |
318 | 318 | |
319 | - /** |
|
320 | - * Retrieves a normalized URL: this ensures that all parameters |
|
321 | - * in the URL are always in the same order. |
|
322 | - * |
|
323 | - * @return string |
|
324 | - */ |
|
319 | + /** |
|
320 | + * Retrieves a normalized URL: this ensures that all parameters |
|
321 | + * in the URL are always in the same order. |
|
322 | + * |
|
323 | + * @return string |
|
324 | + */ |
|
325 | 325 | public function getNormalized() : string |
326 | 326 | { |
327 | 327 | return $this->normalize(true); |
328 | 328 | } |
329 | 329 | |
330 | - /** |
|
331 | - * Like getNormalized(), but if a username and password are present |
|
332 | - * in the URL, returns the URL without them. |
|
333 | - * |
|
334 | - * @return string |
|
335 | - */ |
|
330 | + /** |
|
331 | + * Like getNormalized(), but if a username and password are present |
|
332 | + * in the URL, returns the URL without them. |
|
333 | + * |
|
334 | + * @return string |
|
335 | + */ |
|
336 | 336 | public function getNormalizedWithoutAuth() : string |
337 | 337 | { |
338 | 338 | return $this->normalize(false); |
@@ -353,25 +353,25 @@ discard block |
||
353 | 353 | return $this->normalizer->normalize(); |
354 | 354 | } |
355 | 355 | |
356 | - /** |
|
357 | - * Creates a hash of the URL, which can be used for comparisons. |
|
358 | - * Since any parameters in the URL's query are sorted alphabetically, |
|
359 | - * the same links with a different parameter order will have the |
|
360 | - * same hash. |
|
361 | - * |
|
362 | - * @return string |
|
363 | - */ |
|
356 | + /** |
|
357 | + * Creates a hash of the URL, which can be used for comparisons. |
|
358 | + * Since any parameters in the URL's query are sorted alphabetically, |
|
359 | + * the same links with a different parameter order will have the |
|
360 | + * same hash. |
|
361 | + * |
|
362 | + * @return string |
|
363 | + */ |
|
364 | 364 | public function getHash() |
365 | 365 | { |
366 | 366 | return \AppUtils\ConvertHelper::string2shortHash($this->getNormalized()); |
367 | 367 | } |
368 | 368 | |
369 | - /** |
|
370 | - * Highlights the URL using HTML tags with specific highlighting |
|
371 | - * class names. |
|
372 | - * |
|
373 | - * @return string Will return an empty string if the URL is not valid. |
|
374 | - */ |
|
369 | + /** |
|
370 | + * Highlights the URL using HTML tags with specific highlighting |
|
371 | + * class names. |
|
372 | + * |
|
373 | + * @return string Will return an empty string if the URL is not valid. |
|
374 | + */ |
|
375 | 375 | public function getHighlighted() : string |
376 | 376 | { |
377 | 377 | if(!$this->isValid()) { |
@@ -405,15 +405,15 @@ discard block |
||
405 | 405 | return count($params); |
406 | 406 | } |
407 | 407 | |
408 | - /** |
|
409 | - * Retrieves all parameters specified in the url, |
|
410 | - * if any, as an associative array. |
|
411 | - * |
|
412 | - * NOTE: Ignores parameters that have been added |
|
413 | - * to the excluded parameters list. |
|
414 | - * |
|
415 | - * @return array |
|
416 | - */ |
|
408 | + /** |
|
409 | + * Retrieves all parameters specified in the url, |
|
410 | + * if any, as an associative array. |
|
411 | + * |
|
412 | + * NOTE: Ignores parameters that have been added |
|
413 | + * to the excluded parameters list. |
|
414 | + * |
|
415 | + * @return array |
|
416 | + */ |
|
417 | 417 | public function getParams() : array |
418 | 418 | { |
419 | 419 | if(!$this->paramExclusion || empty($this->excludedParams)) { |
@@ -431,22 +431,22 @@ discard block |
||
431 | 431 | return $keep; |
432 | 432 | } |
433 | 433 | |
434 | - /** |
|
435 | - * Retrieves the names of all parameters present in the URL, if any. |
|
436 | - * @return string[] |
|
437 | - */ |
|
434 | + /** |
|
435 | + * Retrieves the names of all parameters present in the URL, if any. |
|
436 | + * @return string[] |
|
437 | + */ |
|
438 | 438 | public function getParamNames() : array |
439 | 439 | { |
440 | 440 | $params = $this->getParams(); |
441 | 441 | return array_keys($params); |
442 | 442 | } |
443 | 443 | |
444 | - /** |
|
445 | - * Retrieves a specific parameter value from the URL. |
|
446 | - * |
|
447 | - * @param string $name |
|
448 | - * @return string The parameter value, or an empty string if it does not exist. |
|
449 | - */ |
|
444 | + /** |
|
445 | + * Retrieves a specific parameter value from the URL. |
|
446 | + * |
|
447 | + * @param string $name |
|
448 | + * @return string The parameter value, or an empty string if it does not exist. |
|
449 | + */ |
|
450 | 450 | public function getParam(string $name) : string |
451 | 451 | { |
452 | 452 | if(isset($this->info['params'][$name])) { |
@@ -456,16 +456,16 @@ discard block |
||
456 | 456 | return ''; |
457 | 457 | } |
458 | 458 | |
459 | - /** |
|
460 | - * Excludes an URL parameter entirely if present: |
|
461 | - * the parser will act as if the parameter was not |
|
462 | - * even present in the source URL, effectively |
|
463 | - * stripping it. |
|
464 | - * |
|
465 | - * @param string $name |
|
466 | - * @param string $reason A human readable explanation why this is excluded - used when highlighting links. |
|
467 | - * @return URLInfo |
|
468 | - */ |
|
459 | + /** |
|
460 | + * Excludes an URL parameter entirely if present: |
|
461 | + * the parser will act as if the parameter was not |
|
462 | + * even present in the source URL, effectively |
|
463 | + * stripping it. |
|
464 | + * |
|
465 | + * @param string $name |
|
466 | + * @param string $reason A human readable explanation why this is excluded - used when highlighting links. |
|
467 | + * @return URLInfo |
|
468 | + */ |
|
469 | 469 | public function excludeParam(string $name, string $reason='') : URLInfo |
470 | 470 | { |
471 | 471 | if(!isset($this->excludedParams[$name])) |
@@ -518,25 +518,25 @@ discard block |
||
518 | 518 | return self::$typeLabels[$this->getType()]; |
519 | 519 | } |
520 | 520 | |
521 | - /** |
|
522 | - * Whether excluded parameters should be highlighted in |
|
523 | - * a different color in the URL when using the |
|
524 | - * {@link URLInfo::getHighlighted()} method. |
|
525 | - * |
|
526 | - * @param bool $highlight |
|
527 | - * @return URLInfo |
|
528 | - */ |
|
521 | + /** |
|
522 | + * Whether excluded parameters should be highlighted in |
|
523 | + * a different color in the URL when using the |
|
524 | + * {@link URLInfo::getHighlighted()} method. |
|
525 | + * |
|
526 | + * @param bool $highlight |
|
527 | + * @return URLInfo |
|
528 | + */ |
|
529 | 529 | public function setHighlightExcluded(bool $highlight=true) : URLInfo |
530 | 530 | { |
531 | 531 | $this->highlightExcluded = $highlight; |
532 | 532 | return $this; |
533 | 533 | } |
534 | 534 | |
535 | - /** |
|
536 | - * Returns an array with all relevant URL information. |
|
537 | - * |
|
538 | - * @return array |
|
539 | - */ |
|
535 | + /** |
|
536 | + * Returns an array with all relevant URL information. |
|
537 | + * |
|
538 | + * @return array |
|
539 | + */ |
|
540 | 540 | public function toArray() : array |
541 | 541 | { |
542 | 542 | return array( |
@@ -580,24 +580,24 @@ discard block |
||
580 | 580 | return $this; |
581 | 581 | } |
582 | 582 | |
583 | - /** |
|
584 | - * Whether the parameter exclusion mode is enabled: |
|
585 | - * In this case, if any parameters have been added to the |
|
586 | - * exclusion list, all relevant methods will exclude these. |
|
587 | - * |
|
588 | - * @return bool |
|
589 | - */ |
|
583 | + /** |
|
584 | + * Whether the parameter exclusion mode is enabled: |
|
585 | + * In this case, if any parameters have been added to the |
|
586 | + * exclusion list, all relevant methods will exclude these. |
|
587 | + * |
|
588 | + * @return bool |
|
589 | + */ |
|
590 | 590 | public function isParamExclusionEnabled() : bool |
591 | 591 | { |
592 | 592 | return $this->paramExclusion; |
593 | 593 | } |
594 | 594 | |
595 | - /** |
|
596 | - * Checks whether the link contains any parameters that |
|
597 | - * are on the list of excluded parameters. |
|
598 | - * |
|
599 | - * @return bool |
|
600 | - */ |
|
595 | + /** |
|
596 | + * Checks whether the link contains any parameters that |
|
597 | + * are on the list of excluded parameters. |
|
598 | + * |
|
599 | + * @return bool |
|
600 | + */ |
|
601 | 601 | public function containsExcludedParams() : bool |
602 | 602 | { |
603 | 603 | if(empty($this->excludedParams)) { |
@@ -665,16 +665,16 @@ discard block |
||
665 | 665 | return $this->highlightExcluded; |
666 | 666 | } |
667 | 667 | |
668 | - /** |
|
669 | - * Checks if the URL exists, i.e. can be connected to. Will return |
|
670 | - * true if the returned HTTP status code is `200` or `302`. |
|
671 | - * |
|
672 | - * NOTE: If the target URL requires HTTP authentication, the username |
|
673 | - * and password should be integrated into the URL. |
|
674 | - * |
|
675 | - * @return bool |
|
676 | - * @throws BaseException |
|
677 | - */ |
|
668 | + /** |
|
669 | + * Checks if the URL exists, i.e. can be connected to. Will return |
|
670 | + * true if the returned HTTP status code is `200` or `302`. |
|
671 | + * |
|
672 | + * NOTE: If the target URL requires HTTP authentication, the username |
|
673 | + * and password should be integrated into the URL. |
|
674 | + * |
|
675 | + * @return bool |
|
676 | + * @throws BaseException |
|
677 | + */ |
|
678 | 678 | public function tryConnect(bool $verifySSL=true) : bool |
679 | 679 | { |
680 | 680 | return $this->createConnectionTester() |
@@ -682,26 +682,26 @@ discard block |
||
682 | 682 | ->canConnect(); |
683 | 683 | } |
684 | 684 | |
685 | - /** |
|
686 | - * Creates the connection tester instance that is used |
|
687 | - * to check if a URL can be connected to, and which is |
|
688 | - * used in the {@see URLInfo::tryConnect()} method. It |
|
689 | - * allows more settings to be used. |
|
690 | - * |
|
691 | - * @return URLInfo_ConnectionTester |
|
692 | - */ |
|
685 | + /** |
|
686 | + * Creates the connection tester instance that is used |
|
687 | + * to check if a URL can be connected to, and which is |
|
688 | + * used in the {@see URLInfo::tryConnect()} method. It |
|
689 | + * allows more settings to be used. |
|
690 | + * |
|
691 | + * @return URLInfo_ConnectionTester |
|
692 | + */ |
|
693 | 693 | public function createConnectionTester() : URLInfo_ConnectionTester |
694 | 694 | { |
695 | 695 | return new URLInfo_ConnectionTester($this); |
696 | 696 | } |
697 | 697 | |
698 | - /** |
|
699 | - * Adds/overwrites an URL parameter. |
|
700 | - * |
|
701 | - * @param string $name |
|
702 | - * @param string $val |
|
703 | - * @return URLInfo |
|
704 | - */ |
|
698 | + /** |
|
699 | + * Adds/overwrites an URL parameter. |
|
700 | + * |
|
701 | + * @param string $name |
|
702 | + * @param string $val |
|
703 | + * @return URLInfo |
|
704 | + */ |
|
705 | 705 | public function setParam(string $name, string $val) : URLInfo |
706 | 706 | { |
707 | 707 | $this->info['params'][$name] = $val; |
@@ -709,13 +709,13 @@ discard block |
||
709 | 709 | return $this; |
710 | 710 | } |
711 | 711 | |
712 | - /** |
|
713 | - * Removes an URL parameter. Has no effect if the |
|
714 | - * parameter is not present to begin with. |
|
715 | - * |
|
716 | - * @param string $param |
|
717 | - * @return URLInfo |
|
718 | - */ |
|
712 | + /** |
|
713 | + * Removes an URL parameter. Has no effect if the |
|
714 | + * parameter is not present to begin with. |
|
715 | + * |
|
716 | + * @param string $param |
|
717 | + * @return URLInfo |
|
718 | + */ |
|
719 | 719 | public function removeParam(string $param) : URLInfo |
720 | 720 | { |
721 | 721 | if(isset($this->info['params'][$param])) |
@@ -54,13 +54,13 @@ discard block |
||
54 | 54 | return ConvertHelper_String::tabs2spaces($string, $tabSize); |
55 | 55 | } |
56 | 56 | |
57 | - /** |
|
58 | - * Converts spaces to tabs in the specified string. |
|
59 | - * |
|
60 | - * @param string $string |
|
61 | - * @param int $tabSize The amount of spaces per tab in the source string. |
|
62 | - * @return string |
|
63 | - */ |
|
57 | + /** |
|
58 | + * Converts spaces to tabs in the specified string. |
|
59 | + * |
|
60 | + * @param string $string |
|
61 | + * @param int $tabSize The amount of spaces per tab in the source string. |
|
62 | + * @return string |
|
63 | + */ |
|
64 | 64 | public static function spaces2tabs(string $string, int $tabSize=4) : string |
65 | 65 | { |
66 | 66 | return ConvertHelper_String::spaces2tabs($string, $tabSize); |
@@ -78,133 +78,133 @@ discard block |
||
78 | 78 | return ConvertHelper_String::hidden2visible($string); |
79 | 79 | } |
80 | 80 | |
81 | - /** |
|
82 | - * Converts the specified amount of seconds into |
|
83 | - * a human readable string split in months, weeks, |
|
84 | - * days, hours, minutes and seconds. |
|
85 | - * |
|
86 | - * @param float $seconds |
|
87 | - * @return string |
|
88 | - */ |
|
81 | + /** |
|
82 | + * Converts the specified amount of seconds into |
|
83 | + * a human readable string split in months, weeks, |
|
84 | + * days, hours, minutes and seconds. |
|
85 | + * |
|
86 | + * @param float $seconds |
|
87 | + * @return string |
|
88 | + */ |
|
89 | 89 | public static function time2string($seconds) : string |
90 | 90 | { |
91 | 91 | $converter = new ConvertHelper_TimeConverter($seconds); |
92 | 92 | return $converter->toString(); |
93 | 93 | } |
94 | 94 | |
95 | - /** |
|
96 | - * Converts a timestamp into an easily understandable |
|
97 | - * format, e.g. "2 hours", "1 day", "3 months" |
|
98 | - * |
|
99 | - * If you set the date to parameter, the difference |
|
100 | - * will be calculated between the two dates and not |
|
101 | - * the current time. |
|
102 | - * |
|
103 | - * @param integer|DateTime $datefrom |
|
104 | - * @param integer|DateTime $dateto |
|
105 | - * @return string |
|
106 | - */ |
|
95 | + /** |
|
96 | + * Converts a timestamp into an easily understandable |
|
97 | + * format, e.g. "2 hours", "1 day", "3 months" |
|
98 | + * |
|
99 | + * If you set the date to parameter, the difference |
|
100 | + * will be calculated between the two dates and not |
|
101 | + * the current time. |
|
102 | + * |
|
103 | + * @param integer|DateTime $datefrom |
|
104 | + * @param integer|DateTime $dateto |
|
105 | + * @return string |
|
106 | + */ |
|
107 | 107 | public static function duration2string($datefrom, $dateto = -1) : string |
108 | 108 | { |
109 | - $converter = new ConvertHelper_DurationConverter(); |
|
109 | + $converter = new ConvertHelper_DurationConverter(); |
|
110 | 110 | |
111 | - if($datefrom instanceof DateTime) |
|
112 | - { |
|
113 | - $converter->setDateFrom($datefrom); |
|
114 | - } |
|
115 | - else |
|
116 | - { |
|
117 | - $converter->setDateFrom(self::timestamp2date($datefrom)); |
|
118 | - } |
|
111 | + if($datefrom instanceof DateTime) |
|
112 | + { |
|
113 | + $converter->setDateFrom($datefrom); |
|
114 | + } |
|
115 | + else |
|
116 | + { |
|
117 | + $converter->setDateFrom(self::timestamp2date($datefrom)); |
|
118 | + } |
|
119 | 119 | |
120 | - if($dateto instanceof DateTime) |
|
121 | - { |
|
122 | - $converter->setDateTo($dateto); |
|
123 | - } |
|
124 | - else if($dateto > 0) |
|
125 | - { |
|
126 | - $converter->setDateTo(self::timestamp2date($dateto)); |
|
127 | - } |
|
120 | + if($dateto instanceof DateTime) |
|
121 | + { |
|
122 | + $converter->setDateTo($dateto); |
|
123 | + } |
|
124 | + else if($dateto > 0) |
|
125 | + { |
|
126 | + $converter->setDateTo(self::timestamp2date($dateto)); |
|
127 | + } |
|
128 | 128 | |
129 | - return $converter->convert(); |
|
129 | + return $converter->convert(); |
|
130 | 130 | } |
131 | 131 | |
132 | - /** |
|
133 | - * Adds HTML syntax highlighting to the specified SQL string. |
|
134 | - * |
|
135 | - * @param string $sql |
|
136 | - * @return string |
|
137 | - * @deprecated Use the Highlighter class directly instead. |
|
138 | - * @see Highlighter::sql() |
|
139 | - */ |
|
132 | + /** |
|
133 | + * Adds HTML syntax highlighting to the specified SQL string. |
|
134 | + * |
|
135 | + * @param string $sql |
|
136 | + * @return string |
|
137 | + * @deprecated Use the Highlighter class directly instead. |
|
138 | + * @see Highlighter::sql() |
|
139 | + */ |
|
140 | 140 | public static function highlight_sql(string $sql) : string |
141 | 141 | { |
142 | 142 | return Highlighter::sql($sql); |
143 | 143 | } |
144 | 144 | |
145 | - /** |
|
146 | - * Adds HTML syntax highlighting to the specified XML code. |
|
147 | - * |
|
148 | - * @param string $xml The XML to highlight. |
|
149 | - * @param bool $formatSource Whether to format the source with indentation to make it readable. |
|
150 | - * @return string |
|
151 | - * @deprecated Use the Highlighter class directly instead. |
|
152 | - * @see Highlighter::xml() |
|
153 | - */ |
|
145 | + /** |
|
146 | + * Adds HTML syntax highlighting to the specified XML code. |
|
147 | + * |
|
148 | + * @param string $xml The XML to highlight. |
|
149 | + * @param bool $formatSource Whether to format the source with indentation to make it readable. |
|
150 | + * @return string |
|
151 | + * @deprecated Use the Highlighter class directly instead. |
|
152 | + * @see Highlighter::xml() |
|
153 | + */ |
|
154 | 154 | public static function highlight_xml(string $xml, bool $formatSource=false) : string |
155 | 155 | { |
156 | 156 | return Highlighter::xml($xml, $formatSource); |
157 | 157 | } |
158 | 158 | |
159 | - /** |
|
160 | - * @param string $phpCode |
|
161 | - * @return string |
|
162 | - * @deprecated Use the Highlighter class directly instead. |
|
163 | - * @see Highlighter::php() |
|
164 | - */ |
|
159 | + /** |
|
160 | + * @param string $phpCode |
|
161 | + * @return string |
|
162 | + * @deprecated Use the Highlighter class directly instead. |
|
163 | + * @see Highlighter::php() |
|
164 | + */ |
|
165 | 165 | public static function highlight_php(string $phpCode) : string |
166 | 166 | { |
167 | 167 | return Highlighter::php($phpCode); |
168 | 168 | } |
169 | 169 | |
170 | - /** |
|
171 | - * Converts a number of bytes to a human readable form, |
|
172 | - * e.g. xx Kb / xx Mb / xx Gb |
|
173 | - * |
|
174 | - * @param int $bytes The amount of bytes to convert. |
|
175 | - * @param int $precision The amount of decimals |
|
176 | - * @param int $base The base to calculate with: Base 10 is default (=1000 Bytes in a KB), Base 2 is mainly used for Windows memory (=1024 Bytes in a KB). |
|
177 | - * @return string |
|
178 | - * |
|
179 | - * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
180 | - */ |
|
170 | + /** |
|
171 | + * Converts a number of bytes to a human readable form, |
|
172 | + * e.g. xx Kb / xx Mb / xx Gb |
|
173 | + * |
|
174 | + * @param int $bytes The amount of bytes to convert. |
|
175 | + * @param int $precision The amount of decimals |
|
176 | + * @param int $base The base to calculate with: Base 10 is default (=1000 Bytes in a KB), Base 2 is mainly used for Windows memory (=1024 Bytes in a KB). |
|
177 | + * @return string |
|
178 | + * |
|
179 | + * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
180 | + */ |
|
181 | 181 | public static function bytes2readable(int $bytes, int $precision = 1, int $base = ConvertHelper_StorageSizeEnum::BASE_10) : string |
182 | 182 | { |
183 | 183 | return self::parseBytes($bytes)->toString($precision, $base); |
184 | 184 | } |
185 | 185 | |
186 | - /** |
|
187 | - * Parses a number of bytes, and creates a converter instance which |
|
188 | - * allows doing common operations with it. |
|
189 | - * |
|
190 | - * @param int $bytes |
|
191 | - * @return ConvertHelper_ByteConverter |
|
192 | - */ |
|
186 | + /** |
|
187 | + * Parses a number of bytes, and creates a converter instance which |
|
188 | + * allows doing common operations with it. |
|
189 | + * |
|
190 | + * @param int $bytes |
|
191 | + * @return ConvertHelper_ByteConverter |
|
192 | + */ |
|
193 | 193 | public static function parseBytes(int $bytes) : ConvertHelper_ByteConverter |
194 | 194 | { |
195 | 195 | return new ConvertHelper_ByteConverter($bytes); |
196 | 196 | } |
197 | 197 | |
198 | - /** |
|
199 | - * Cuts a text to the specified length if it is longer than the |
|
200 | - * target length. Appends a text to signify it has been cut at |
|
201 | - * the end of the string. |
|
202 | - * |
|
203 | - * @param string $text |
|
204 | - * @param int $targetLength |
|
205 | - * @param string $append |
|
206 | - * @return string |
|
207 | - */ |
|
198 | + /** |
|
199 | + * Cuts a text to the specified length if it is longer than the |
|
200 | + * target length. Appends a text to signify it has been cut at |
|
201 | + * the end of the string. |
|
202 | + * |
|
203 | + * @param string $text |
|
204 | + * @param int $targetLength |
|
205 | + * @param string $append |
|
206 | + * @return string |
|
207 | + */ |
|
208 | 208 | public static function text_cut(string $text, int $targetLength, string $append = '...') : string |
209 | 209 | { |
210 | 210 | return ConvertHelper_String::cutText($text, $targetLength, $append); |
@@ -221,14 +221,14 @@ discard block |
||
221 | 221 | return $info->toString(); |
222 | 222 | } |
223 | 223 | |
224 | - /** |
|
225 | - * Pretty print_r. |
|
226 | - * |
|
227 | - * @param mixed $var The variable to dump. |
|
228 | - * @param bool $return Whether to return the dumped code. |
|
229 | - * @param bool $html Whether to style the dump as HTML. |
|
230 | - * @return string |
|
231 | - */ |
|
224 | + /** |
|
225 | + * Pretty print_r. |
|
226 | + * |
|
227 | + * @param mixed $var The variable to dump. |
|
228 | + * @param bool $return Whether to return the dumped code. |
|
229 | + * @param bool $html Whether to style the dump as HTML. |
|
230 | + * @return string |
|
231 | + */ |
|
232 | 232 | public static function print_r($var, bool $return=false, bool $html=true) : string |
233 | 233 | { |
234 | 234 | $result = parseVariable($var)->enableType()->toString(); |
@@ -249,41 +249,41 @@ discard block |
||
249 | 249 | return $result; |
250 | 250 | } |
251 | 251 | |
252 | - /** |
|
253 | - * Converts a string, number or boolean value to a boolean value. |
|
254 | - * |
|
255 | - * @param mixed $string |
|
256 | - * @throws ConvertHelper_Exception |
|
257 | - * @return bool |
|
258 | - * |
|
259 | - * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING |
|
260 | - */ |
|
252 | + /** |
|
253 | + * Converts a string, number or boolean value to a boolean value. |
|
254 | + * |
|
255 | + * @param mixed $string |
|
256 | + * @throws ConvertHelper_Exception |
|
257 | + * @return bool |
|
258 | + * |
|
259 | + * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING |
|
260 | + */ |
|
261 | 261 | public static function string2bool($string) : bool |
262 | 262 | { |
263 | 263 | return ConvertHelper_Bool::fromString($string); |
264 | 264 | } |
265 | 265 | |
266 | - /** |
|
267 | - * Whether the specified string is a boolean string or boolean value. |
|
268 | - * Alias for {@link ConvertHelper::isBoolean()}. |
|
269 | - * |
|
270 | - * @param mixed $string |
|
271 | - * @return bool |
|
272 | - * @deprecated |
|
273 | - * @see ConvertHelper::isBoolean() |
|
274 | - */ |
|
266 | + /** |
|
267 | + * Whether the specified string is a boolean string or boolean value. |
|
268 | + * Alias for {@link ConvertHelper::isBoolean()}. |
|
269 | + * |
|
270 | + * @param mixed $string |
|
271 | + * @return bool |
|
272 | + * @deprecated |
|
273 | + * @see ConvertHelper::isBoolean() |
|
274 | + */ |
|
275 | 275 | public static function isBooleanString($string) : bool |
276 | 276 | { |
277 | 277 | return self::isBoolean($string); |
278 | 278 | } |
279 | 279 | |
280 | - /** |
|
281 | - * Alias for the {@\AppUtils\XMLHelper::string2xml()} method. |
|
282 | - * |
|
283 | - * @param string $text |
|
284 | - * @return string |
|
285 | - * @deprecated |
|
286 | - */ |
|
280 | + /** |
|
281 | + * Alias for the {@\AppUtils\XMLHelper::string2xml()} method. |
|
282 | + * |
|
283 | + * @param string $text |
|
284 | + * @return string |
|
285 | + * @deprecated |
|
286 | + */ |
|
287 | 287 | public static function text_makeXMLCompliant($text) |
288 | 288 | { |
289 | 289 | return XMLHelper::string2xml($text); |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | |
322 | 322 | $labelHtml = '<span title="'.$date->format($toolTipDateFormat).'">'. |
323 | 323 | trim($label). |
324 | - '</span>'; |
|
324 | + '</span>'; |
|
325 | 325 | |
326 | 326 | return $labelHtml; |
327 | 327 | } |
@@ -386,36 +386,36 @@ discard block |
||
386 | 386 | return ConvertHelper_String::transliterate($string, $spaceChar, $lowercase); |
387 | 387 | } |
388 | 388 | |
389 | - /** |
|
390 | - * Retrieves the HEX character codes for all control |
|
391 | - * characters that the {@link stripControlCharacters()} |
|
392 | - * method will remove. |
|
393 | - * |
|
394 | - * @return string[] |
|
395 | - */ |
|
389 | + /** |
|
390 | + * Retrieves the HEX character codes for all control |
|
391 | + * characters that the {@link stripControlCharacters()} |
|
392 | + * method will remove. |
|
393 | + * |
|
394 | + * @return string[] |
|
395 | + */ |
|
396 | 396 | public static function getControlCharactersAsHex() |
397 | 397 | { |
398 | 398 | return self::createControlCharacters()->getCharsAsHex(); |
399 | 399 | } |
400 | 400 | |
401 | - /** |
|
402 | - * Retrieves an array of all control characters that |
|
403 | - * the {@link stripControlCharacters()} method will |
|
404 | - * remove, as the actual UTF-8 characters. |
|
405 | - * |
|
406 | - * @return string[] |
|
407 | - */ |
|
401 | + /** |
|
402 | + * Retrieves an array of all control characters that |
|
403 | + * the {@link stripControlCharacters()} method will |
|
404 | + * remove, as the actual UTF-8 characters. |
|
405 | + * |
|
406 | + * @return string[] |
|
407 | + */ |
|
408 | 408 | public static function getControlCharactersAsUTF8() |
409 | 409 | { |
410 | 410 | return self::createControlCharacters()->getCharsAsUTF8(); |
411 | 411 | } |
412 | 412 | |
413 | - /** |
|
414 | - * Retrieves all control characters as JSON encoded |
|
415 | - * characters, e.g. "\u200b". |
|
416 | - * |
|
417 | - * @return string[] |
|
418 | - */ |
|
413 | + /** |
|
414 | + * Retrieves all control characters as JSON encoded |
|
415 | + * characters, e.g. "\u200b". |
|
416 | + * |
|
417 | + * @return string[] |
|
418 | + */ |
|
419 | 419 | public static function getControlCharactersAsJSON() |
420 | 420 | { |
421 | 421 | return self::createControlCharacters()->getCharsAsJSON(); |
@@ -436,31 +436,31 @@ discard block |
||
436 | 436 | return self::createControlCharacters()->stripControlCharacters($string); |
437 | 437 | } |
438 | 438 | |
439 | - /** |
|
440 | - * Creates the control characters class, used to |
|
441 | - * work with control characters in strings. |
|
442 | - * |
|
443 | - * @return ConvertHelper_ControlCharacters |
|
444 | - */ |
|
439 | + /** |
|
440 | + * Creates the control characters class, used to |
|
441 | + * work with control characters in strings. |
|
442 | + * |
|
443 | + * @return ConvertHelper_ControlCharacters |
|
444 | + */ |
|
445 | 445 | public static function createControlCharacters() : ConvertHelper_ControlCharacters |
446 | 446 | { |
447 | 447 | return new ConvertHelper_ControlCharacters(); |
448 | 448 | } |
449 | 449 | |
450 | - /** |
|
451 | - * Converts a unicode character to the PHPO notation. |
|
452 | - * |
|
453 | - * Example: |
|
454 | - * |
|
455 | - * <pre>unicodeChar2php('"\u0000"')</pre> |
|
456 | - * |
|
457 | - * Returns |
|
458 | - * |
|
459 | - * <pre>\x0</pre> |
|
460 | - * |
|
461 | - * @param string $unicodeChar |
|
462 | - * @return string |
|
463 | - */ |
|
450 | + /** |
|
451 | + * Converts a unicode character to the PHPO notation. |
|
452 | + * |
|
453 | + * Example: |
|
454 | + * |
|
455 | + * <pre>unicodeChar2php('"\u0000"')</pre> |
|
456 | + * |
|
457 | + * Returns |
|
458 | + * |
|
459 | + * <pre>\x0</pre> |
|
460 | + * |
|
461 | + * @param string $unicodeChar |
|
462 | + * @return string |
|
463 | + */ |
|
464 | 464 | public static function unicodeChar2php(string $unicodeChar) : string |
465 | 465 | { |
466 | 466 | $unicodeChar = json_decode($unicodeChar); |
@@ -570,87 +570,87 @@ discard block |
||
570 | 570 | return ConvertHelper_Bool::toString($boolean, $yesno); |
571 | 571 | } |
572 | 572 | |
573 | - /** |
|
574 | - * Converts an associative array with attribute name > value pairs |
|
575 | - * to an attribute string that can be used in an HTML tag. Empty |
|
576 | - * attribute values are ignored. |
|
577 | - * |
|
578 | - * Example: |
|
579 | - * |
|
580 | - * array2attributeString(array( |
|
581 | - * 'id' => 45, |
|
582 | - * 'href' => 'http://www.mistralys.com' |
|
583 | - * )); |
|
584 | - * |
|
585 | - * Result: |
|
586 | - * |
|
587 | - * id="45" href="http://www.mistralys.com" |
|
588 | - * |
|
589 | - * @param array<string,mixed> $array |
|
590 | - * @return string |
|
591 | - */ |
|
573 | + /** |
|
574 | + * Converts an associative array with attribute name > value pairs |
|
575 | + * to an attribute string that can be used in an HTML tag. Empty |
|
576 | + * attribute values are ignored. |
|
577 | + * |
|
578 | + * Example: |
|
579 | + * |
|
580 | + * array2attributeString(array( |
|
581 | + * 'id' => 45, |
|
582 | + * 'href' => 'http://www.mistralys.com' |
|
583 | + * )); |
|
584 | + * |
|
585 | + * Result: |
|
586 | + * |
|
587 | + * id="45" href="http://www.mistralys.com" |
|
588 | + * |
|
589 | + * @param array<string,mixed> $array |
|
590 | + * @return string |
|
591 | + */ |
|
592 | 592 | public static function array2attributeString(array $array) : string |
593 | 593 | { |
594 | 594 | return ConvertHelper_Array::toAttributeString($array); |
595 | 595 | } |
596 | 596 | |
597 | - /** |
|
598 | - * Converts a string so it can safely be used in a javascript |
|
599 | - * statement in an HTML tag: uses single quotes around the string |
|
600 | - * and encodes all special characters as needed. |
|
601 | - * |
|
602 | - * @param string $string |
|
603 | - * @return string |
|
604 | - * @deprecated Use the JSHelper class instead. |
|
605 | - * @see JSHelper::phpVariable2AttributeJS() |
|
606 | - */ |
|
597 | + /** |
|
598 | + * Converts a string so it can safely be used in a javascript |
|
599 | + * statement in an HTML tag: uses single quotes around the string |
|
600 | + * and encodes all special characters as needed. |
|
601 | + * |
|
602 | + * @param string $string |
|
603 | + * @return string |
|
604 | + * @deprecated Use the JSHelper class instead. |
|
605 | + * @see JSHelper::phpVariable2AttributeJS() |
|
606 | + */ |
|
607 | 607 | public static function string2attributeJS(string $string) : string |
608 | 608 | { |
609 | 609 | return JSHelper::phpVariable2AttributeJS($string); |
610 | 610 | } |
611 | 611 | |
612 | - /** |
|
613 | - * Checks if the specified string is a boolean value, which |
|
614 | - * includes string representations of boolean values, like |
|
615 | - * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
616 | - * or <code>false</code>. |
|
617 | - * |
|
618 | - * @param mixed $value |
|
619 | - * @return boolean |
|
620 | - */ |
|
612 | + /** |
|
613 | + * Checks if the specified string is a boolean value, which |
|
614 | + * includes string representations of boolean values, like |
|
615 | + * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
616 | + * or <code>false</code>. |
|
617 | + * |
|
618 | + * @param mixed $value |
|
619 | + * @return boolean |
|
620 | + */ |
|
621 | 621 | public static function isBoolean($value) : bool |
622 | 622 | { |
623 | 623 | return ConvertHelper_Bool::isBoolean($value); |
624 | 624 | } |
625 | 625 | |
626 | - /** |
|
627 | - * Converts an associative array to an HTML style attribute value string. |
|
628 | - * |
|
629 | - * @param array<string,mixed> $subject |
|
630 | - * @return string |
|
631 | - */ |
|
626 | + /** |
|
627 | + * Converts an associative array to an HTML style attribute value string. |
|
628 | + * |
|
629 | + * @param array<string,mixed> $subject |
|
630 | + * @return string |
|
631 | + */ |
|
632 | 632 | public static function array2styleString(array $subject) : string |
633 | 633 | { |
634 | 634 | return ConvertHelper_Array::toStyleString($subject); |
635 | 635 | } |
636 | 636 | |
637 | - /** |
|
638 | - * Converts a DateTime object to a timestamp, which |
|
639 | - * is PHP 5.2 compatible. |
|
640 | - * |
|
641 | - * @param DateTime $date |
|
642 | - * @return integer |
|
643 | - */ |
|
637 | + /** |
|
638 | + * Converts a DateTime object to a timestamp, which |
|
639 | + * is PHP 5.2 compatible. |
|
640 | + * |
|
641 | + * @param DateTime $date |
|
642 | + * @return integer |
|
643 | + */ |
|
644 | 644 | public static function date2timestamp(DateTime $date) : int |
645 | 645 | { |
646 | 646 | return (int)$date->format('U'); |
647 | 647 | } |
648 | 648 | |
649 | - /** |
|
650 | - * Converts a timestamp into a DateTime instance. |
|
651 | - * @param int $timestamp |
|
652 | - * @return DateTime |
|
653 | - */ |
|
649 | + /** |
|
650 | + * Converts a timestamp into a DateTime instance. |
|
651 | + * @param int $timestamp |
|
652 | + * @return DateTime |
|
653 | + */ |
|
654 | 654 | public static function timestamp2date(int $timestamp) : DateTime |
655 | 655 | { |
656 | 656 | $date = new DateTime(); |
@@ -658,50 +658,50 @@ discard block |
||
658 | 658 | return $date; |
659 | 659 | } |
660 | 660 | |
661 | - /** |
|
662 | - * Strips an absolute path to a file within the application |
|
663 | - * to make the path relative to the application root path. |
|
664 | - * |
|
665 | - * @param string $path |
|
666 | - * @return string |
|
667 | - * |
|
668 | - * @see FileHelper::relativizePath() |
|
669 | - * @see FileHelper::relativizePathByDepth() |
|
670 | - */ |
|
661 | + /** |
|
662 | + * Strips an absolute path to a file within the application |
|
663 | + * to make the path relative to the application root path. |
|
664 | + * |
|
665 | + * @param string $path |
|
666 | + * @return string |
|
667 | + * |
|
668 | + * @see FileHelper::relativizePath() |
|
669 | + * @see FileHelper::relativizePathByDepth() |
|
670 | + */ |
|
671 | 671 | public static function fileRelativize(string $path) : string |
672 | 672 | { |
673 | 673 | return FileHelper::relativizePathByDepth($path); |
674 | 674 | } |
675 | 675 | |
676 | 676 | /** |
677 | - * Converts a PHP regex to a javascript RegExp object statement. |
|
678 | - * |
|
679 | - * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
680 | - * More details are available on its usage there. |
|
681 | - * |
|
682 | - * @param string $regex A PHP preg regex |
|
683 | - * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
684 | - * @return array|string Depending on the specified return type. |
|
685 | - * |
|
686 | - * @see JSHelper::buildRegexStatement() |
|
687 | - */ |
|
677 | + * Converts a PHP regex to a javascript RegExp object statement. |
|
678 | + * |
|
679 | + * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
680 | + * More details are available on its usage there. |
|
681 | + * |
|
682 | + * @param string $regex A PHP preg regex |
|
683 | + * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
684 | + * @return array|string Depending on the specified return type. |
|
685 | + * |
|
686 | + * @see JSHelper::buildRegexStatement() |
|
687 | + */ |
|
688 | 688 | public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT) |
689 | 689 | { |
690 | 690 | return JSHelper::buildRegexStatement($regex, $statementType); |
691 | 691 | } |
692 | 692 | |
693 | - /** |
|
694 | - * Converts the specified variable to JSON. Works just |
|
695 | - * like the native `json_encode` method, except that it |
|
696 | - * will trigger an exception on failure, which has the |
|
697 | - * json error details included in its developer details. |
|
698 | - * |
|
699 | - * @param mixed $variable |
|
700 | - * @param int $options JSON encode options. |
|
701 | - * @param int $depth |
|
702 | - * @throws ConvertHelper_Exception |
|
703 | - * @return string |
|
704 | - */ |
|
693 | + /** |
|
694 | + * Converts the specified variable to JSON. Works just |
|
695 | + * like the native `json_encode` method, except that it |
|
696 | + * will trigger an exception on failure, which has the |
|
697 | + * json error details included in its developer details. |
|
698 | + * |
|
699 | + * @param mixed $variable |
|
700 | + * @param int $options JSON encode options. |
|
701 | + * @param int $depth |
|
702 | + * @throws ConvertHelper_Exception |
|
703 | + * @return string |
|
704 | + */ |
|
705 | 705 | public static function var2json($variable, int $options=0, int $depth=512) : string |
706 | 706 | { |
707 | 707 | $result = json_encode($variable, $options, $depth); |
@@ -736,12 +736,12 @@ discard block |
||
736 | 736 | ->toString(); |
737 | 737 | } |
738 | 738 | |
739 | - /** |
|
740 | - * Strips all known UTF byte order marks from the specified string. |
|
741 | - * |
|
742 | - * @param string $string |
|
743 | - * @return string |
|
744 | - */ |
|
739 | + /** |
|
740 | + * Strips all known UTF byte order marks from the specified string. |
|
741 | + * |
|
742 | + * @param string $string |
|
743 | + * @return string |
|
744 | + */ |
|
745 | 745 | public static function stripUTFBom($string) |
746 | 746 | { |
747 | 747 | $boms = FileHelper::getUTFBOMs(); |
@@ -756,65 +756,65 @@ discard block |
||
756 | 756 | return $string; |
757 | 757 | } |
758 | 758 | |
759 | - /** |
|
760 | - * Converts a string to valid utf8, regardless |
|
761 | - * of the string's encoding(s). |
|
762 | - * |
|
763 | - * @param string $string |
|
764 | - * @return string |
|
765 | - */ |
|
759 | + /** |
|
760 | + * Converts a string to valid utf8, regardless |
|
761 | + * of the string's encoding(s). |
|
762 | + * |
|
763 | + * @param string $string |
|
764 | + * @return string |
|
765 | + */ |
|
766 | 766 | public static function string2utf8(string $string) : string |
767 | 767 | { |
768 | 768 | return ConvertHelper_String::toUtf8($string); |
769 | 769 | } |
770 | 770 | |
771 | - /** |
|
772 | - * Checks whether the specified string is an ASCII |
|
773 | - * string, without any special or UTF8 characters. |
|
774 | - * Note: empty strings and NULL are considered ASCII. |
|
775 | - * Any variable types other than strings are not. |
|
776 | - * |
|
777 | - * @param string|float|int|NULL $string |
|
778 | - * @return boolean |
|
779 | - */ |
|
771 | + /** |
|
772 | + * Checks whether the specified string is an ASCII |
|
773 | + * string, without any special or UTF8 characters. |
|
774 | + * Note: empty strings and NULL are considered ASCII. |
|
775 | + * Any variable types other than strings are not. |
|
776 | + * |
|
777 | + * @param string|float|int|NULL $string |
|
778 | + * @return boolean |
|
779 | + */ |
|
780 | 780 | public static function isStringASCII($string) : bool |
781 | 781 | { |
782 | 782 | return ConvertHelper_String::isASCII(strval($string)); |
783 | 783 | } |
784 | 784 | |
785 | - /** |
|
786 | - * Adds HTML syntax highlighting to an URL. |
|
787 | - * |
|
788 | - * NOTE: Includes the necessary CSS styles. When |
|
789 | - * highlighting several URLs in the same page, |
|
790 | - * prefer using the `parseURL` function instead. |
|
791 | - * |
|
792 | - * @param string $url |
|
793 | - * @return string |
|
794 | - * @deprecated Use the Highlighter class directly instead. |
|
795 | - * @see Highlighter |
|
796 | - */ |
|
785 | + /** |
|
786 | + * Adds HTML syntax highlighting to an URL. |
|
787 | + * |
|
788 | + * NOTE: Includes the necessary CSS styles. When |
|
789 | + * highlighting several URLs in the same page, |
|
790 | + * prefer using the `parseURL` function instead. |
|
791 | + * |
|
792 | + * @param string $url |
|
793 | + * @return string |
|
794 | + * @deprecated Use the Highlighter class directly instead. |
|
795 | + * @see Highlighter |
|
796 | + */ |
|
797 | 797 | public static function highlight_url(string $url) : string |
798 | 798 | { |
799 | 799 | return Highlighter::url($url); |
800 | 800 | } |
801 | 801 | |
802 | - /** |
|
803 | - * Calculates a percentage match of the source string with the target string. |
|
804 | - * |
|
805 | - * Options are: |
|
806 | - * |
|
807 | - * - maxLevenshtein, default: 10 |
|
808 | - * Any levenshtein results above this value are ignored. |
|
809 | - * |
|
810 | - * - precision, default: 1 |
|
811 | - * The precision of the percentage float value |
|
812 | - * |
|
813 | - * @param string $source |
|
814 | - * @param string $target |
|
815 | - * @param array $options |
|
816 | - * @return float |
|
817 | - */ |
|
802 | + /** |
|
803 | + * Calculates a percentage match of the source string with the target string. |
|
804 | + * |
|
805 | + * Options are: |
|
806 | + * |
|
807 | + * - maxLevenshtein, default: 10 |
|
808 | + * Any levenshtein results above this value are ignored. |
|
809 | + * |
|
810 | + * - precision, default: 1 |
|
811 | + * The precision of the percentage float value |
|
812 | + * |
|
813 | + * @param string $source |
|
814 | + * @param string $target |
|
815 | + * @param array $options |
|
816 | + * @return float |
|
817 | + */ |
|
818 | 818 | public static function matchString($source, $target, $options=array()) |
819 | 819 | { |
820 | 820 | $defaults = array( |
@@ -838,14 +838,14 @@ discard block |
||
838 | 838 | return round(100 - $percent, $options['precision']); |
839 | 839 | } |
840 | 840 | |
841 | - /** |
|
842 | - * Converts a date interval to a human readable string with |
|
843 | - * all necessary time components, e.g. "1 year, 2 months and 4 days". |
|
844 | - * |
|
845 | - * @param \DateInterval $interval |
|
846 | - * @return string |
|
847 | - * @see ConvertHelper_IntervalConverter |
|
848 | - */ |
|
841 | + /** |
|
842 | + * Converts a date interval to a human readable string with |
|
843 | + * all necessary time components, e.g. "1 year, 2 months and 4 days". |
|
844 | + * |
|
845 | + * @param \DateInterval $interval |
|
846 | + * @return string |
|
847 | + * @see ConvertHelper_IntervalConverter |
|
848 | + */ |
|
849 | 849 | public static function interval2string(\DateInterval $interval) : string |
850 | 850 | { |
851 | 851 | $converter = new ConvertHelper_IntervalConverter(); |
@@ -860,60 +860,60 @@ discard block |
||
860 | 860 | |
861 | 861 | const INTERVAL_SECONDS = 'seconds'; |
862 | 862 | |
863 | - /** |
|
864 | - * Converts an interval to its total amount of days. |
|
865 | - * @param \DateInterval $interval |
|
866 | - * @return int |
|
867 | - */ |
|
863 | + /** |
|
864 | + * Converts an interval to its total amount of days. |
|
865 | + * @param \DateInterval $interval |
|
866 | + * @return int |
|
867 | + */ |
|
868 | 868 | public static function interval2days(\DateInterval $interval) : int |
869 | 869 | { |
870 | 870 | return self::interval2total($interval, self::INTERVAL_DAYS); |
871 | 871 | } |
872 | 872 | |
873 | - /** |
|
874 | - * Converts an interval to its total amount of hours. |
|
875 | - * @param \DateInterval $interval |
|
876 | - * @return int |
|
877 | - */ |
|
873 | + /** |
|
874 | + * Converts an interval to its total amount of hours. |
|
875 | + * @param \DateInterval $interval |
|
876 | + * @return int |
|
877 | + */ |
|
878 | 878 | public static function interval2hours(\DateInterval $interval) : int |
879 | 879 | { |
880 | 880 | return self::interval2total($interval, self::INTERVAL_HOURS); |
881 | 881 | } |
882 | 882 | |
883 | - /** |
|
884 | - * Converts an interval to its total amount of minutes. |
|
885 | - * @param \DateInterval $interval |
|
886 | - * @return int |
|
887 | - */ |
|
883 | + /** |
|
884 | + * Converts an interval to its total amount of minutes. |
|
885 | + * @param \DateInterval $interval |
|
886 | + * @return int |
|
887 | + */ |
|
888 | 888 | public static function interval2minutes(\DateInterval $interval) : int |
889 | 889 | { |
890 | 890 | return self::interval2total($interval, self::INTERVAL_MINUTES); |
891 | 891 | } |
892 | 892 | |
893 | - /** |
|
894 | - * Converts an interval to its total amount of seconds. |
|
895 | - * @param \DateInterval $interval |
|
896 | - * @return int |
|
897 | - */ |
|
893 | + /** |
|
894 | + * Converts an interval to its total amount of seconds. |
|
895 | + * @param \DateInterval $interval |
|
896 | + * @return int |
|
897 | + */ |
|
898 | 898 | public static function interval2seconds(\DateInterval $interval) : int |
899 | 899 | { |
900 | 900 | return self::interval2total($interval, self::INTERVAL_SECONDS); |
901 | 901 | } |
902 | 902 | |
903 | - /** |
|
904 | - * Calculates the total amount of days / hours / minutes or seconds |
|
905 | - * of a date interval object (depending in the specified units), and |
|
906 | - * returns the total amount. |
|
907 | - * |
|
908 | - * @param \DateInterval $interval |
|
909 | - * @param string $unit What total value to calculate. |
|
910 | - * @return integer |
|
911 | - * |
|
912 | - * @see ConvertHelper::INTERVAL_SECONDS |
|
913 | - * @see ConvertHelper::INTERVAL_MINUTES |
|
914 | - * @see ConvertHelper::INTERVAL_HOURS |
|
915 | - * @see ConvertHelper::INTERVAL_DAYS |
|
916 | - */ |
|
903 | + /** |
|
904 | + * Calculates the total amount of days / hours / minutes or seconds |
|
905 | + * of a date interval object (depending in the specified units), and |
|
906 | + * returns the total amount. |
|
907 | + * |
|
908 | + * @param \DateInterval $interval |
|
909 | + * @param string $unit What total value to calculate. |
|
910 | + * @return integer |
|
911 | + * |
|
912 | + * @see ConvertHelper::INTERVAL_SECONDS |
|
913 | + * @see ConvertHelper::INTERVAL_MINUTES |
|
914 | + * @see ConvertHelper::INTERVAL_HOURS |
|
915 | + * @see ConvertHelper::INTERVAL_DAYS |
|
916 | + */ |
|
917 | 917 | public static function interval2total(\DateInterval $interval, $unit=self::INTERVAL_SECONDS) : int |
918 | 918 | { |
919 | 919 | $total = (int)$interval->format('%a'); |
@@ -953,13 +953,13 @@ discard block |
||
953 | 953 | 'Sunday' |
954 | 954 | ); |
955 | 955 | |
956 | - /** |
|
957 | - * Converts a date to the corresponding day name. |
|
958 | - * |
|
959 | - * @param DateTime $date |
|
960 | - * @param bool $short |
|
961 | - * @return string|NULL |
|
962 | - */ |
|
956 | + /** |
|
957 | + * Converts a date to the corresponding day name. |
|
958 | + * |
|
959 | + * @param DateTime $date |
|
960 | + * @param bool $short |
|
961 | + * @return string|NULL |
|
962 | + */ |
|
963 | 963 | public static function date2dayName(DateTime $date, bool $short=false) |
964 | 964 | { |
965 | 965 | $day = $date->format('l'); |
@@ -974,21 +974,21 @@ discard block |
||
974 | 974 | return null; |
975 | 975 | } |
976 | 976 | |
977 | - /** |
|
978 | - * Retrieves a list of english day names. |
|
979 | - * @return string[] |
|
980 | - */ |
|
977 | + /** |
|
978 | + * Retrieves a list of english day names. |
|
979 | + * @return string[] |
|
980 | + */ |
|
981 | 981 | public static function getDayNamesInvariant() |
982 | 982 | { |
983 | 983 | return self::$daysInvariant; |
984 | 984 | } |
985 | 985 | |
986 | - /** |
|
987 | - * Retrieves the day names list for the current locale. |
|
988 | - * |
|
989 | - * @param bool $short |
|
990 | - * @return array |
|
991 | - */ |
|
986 | + /** |
|
987 | + * Retrieves the day names list for the current locale. |
|
988 | + * |
|
989 | + * @param bool $short |
|
990 | + * @return array |
|
991 | + */ |
|
992 | 992 | public static function getDayNames(bool $short=false) : array |
993 | 993 | { |
994 | 994 | if($short) { |
@@ -1035,68 +1035,68 @@ discard block |
||
1035 | 1035 | return ConvertHelper_Array::implodeWithAnd($list, $sep, $conjunction); |
1036 | 1036 | } |
1037 | 1037 | |
1038 | - /** |
|
1039 | - * Splits a string into an array of all characters it is composed of. |
|
1040 | - * Unicode character safe. |
|
1041 | - * |
|
1042 | - * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
1043 | - * characters. |
|
1044 | - * |
|
1045 | - * @param string $string |
|
1046 | - * @return string[] |
|
1047 | - */ |
|
1038 | + /** |
|
1039 | + * Splits a string into an array of all characters it is composed of. |
|
1040 | + * Unicode character safe. |
|
1041 | + * |
|
1042 | + * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
1043 | + * characters. |
|
1044 | + * |
|
1045 | + * @param string $string |
|
1046 | + * @return string[] |
|
1047 | + */ |
|
1048 | 1048 | public static function string2array(string $string) : array |
1049 | 1049 | { |
1050 | 1050 | return ConvertHelper_String::toArray($string); |
1051 | 1051 | } |
1052 | 1052 | |
1053 | - /** |
|
1054 | - * Checks whether the specified string contains HTML code. |
|
1055 | - * |
|
1056 | - * @param string $string |
|
1057 | - * @return boolean |
|
1058 | - */ |
|
1053 | + /** |
|
1054 | + * Checks whether the specified string contains HTML code. |
|
1055 | + * |
|
1056 | + * @param string $string |
|
1057 | + * @return boolean |
|
1058 | + */ |
|
1059 | 1059 | public static function isStringHTML(string $string) : bool |
1060 | 1060 | { |
1061 | 1061 | return ConvertHelper_String::isHTML($string); |
1062 | 1062 | } |
1063 | 1063 | |
1064 | - /** |
|
1065 | - * UTF8-safe wordwrap method: works like the regular wordwrap |
|
1066 | - * PHP function but compatible with UTF8. Otherwise the lengths |
|
1067 | - * are not calculated correctly. |
|
1068 | - * |
|
1069 | - * @param string $str |
|
1070 | - * @param int $width |
|
1071 | - * @param string $break |
|
1072 | - * @param bool $cut |
|
1073 | - * @return string |
|
1074 | - */ |
|
1064 | + /** |
|
1065 | + * UTF8-safe wordwrap method: works like the regular wordwrap |
|
1066 | + * PHP function but compatible with UTF8. Otherwise the lengths |
|
1067 | + * are not calculated correctly. |
|
1068 | + * |
|
1069 | + * @param string $str |
|
1070 | + * @param int $width |
|
1071 | + * @param string $break |
|
1072 | + * @param bool $cut |
|
1073 | + * @return string |
|
1074 | + */ |
|
1075 | 1075 | public static function wordwrap(string $str, int $width = 75, string $break = "\n", bool $cut = false) : string |
1076 | 1076 | { |
1077 | 1077 | return ConvertHelper_String::wordwrap($str, $width, $break, $cut); |
1078 | 1078 | } |
1079 | 1079 | |
1080 | - /** |
|
1081 | - * Calculates the byte length of a string, taking into |
|
1082 | - * account any unicode characters. |
|
1083 | - * |
|
1084 | - * @param string $string |
|
1085 | - * @return int |
|
1086 | - */ |
|
1080 | + /** |
|
1081 | + * Calculates the byte length of a string, taking into |
|
1082 | + * account any unicode characters. |
|
1083 | + * |
|
1084 | + * @param string $string |
|
1085 | + * @return int |
|
1086 | + */ |
|
1087 | 1087 | public static function string2bytes(string $string): int |
1088 | 1088 | { |
1089 | 1089 | return ConvertHelper_String::toBytes($string); |
1090 | 1090 | } |
1091 | 1091 | |
1092 | - /** |
|
1093 | - * Creates a short, 8-character long hash for the specified string. |
|
1094 | - * |
|
1095 | - * WARNING: Not cryptographically safe. |
|
1096 | - * |
|
1097 | - * @param string $string |
|
1098 | - * @return string |
|
1099 | - */ |
|
1092 | + /** |
|
1093 | + * Creates a short, 8-character long hash for the specified string. |
|
1094 | + * |
|
1095 | + * WARNING: Not cryptographically safe. |
|
1096 | + * |
|
1097 | + * @param string $string |
|
1098 | + * @return string |
|
1099 | + */ |
|
1100 | 1100 | public static function string2shortHash(string $string) : string |
1101 | 1101 | { |
1102 | 1102 | return ConvertHelper_String::toShortHash($string); |
@@ -1142,88 +1142,88 @@ discard block |
||
1142 | 1142 | return ConvertHelper_ThrowableInfo::fromThrowable($e); |
1143 | 1143 | } |
1144 | 1144 | |
1145 | - /** |
|
1146 | - * Parses the specified query string like the native |
|
1147 | - * function <code>parse_str</code>, without the key |
|
1148 | - * naming limitations. |
|
1149 | - * |
|
1150 | - * Using parse_str, dots or spaces in key names are |
|
1151 | - * replaced by underscores. This method keeps all names |
|
1152 | - * intact. |
|
1153 | - * |
|
1154 | - * It still uses the parse_str implementation as it |
|
1155 | - * is tested and tried, but fixes the parameter names |
|
1156 | - * after parsing, as needed. |
|
1157 | - * |
|
1158 | - * @param string $queryString |
|
1159 | - * @return array |
|
1160 | - * @see ConvertHelper_QueryParser |
|
1161 | - */ |
|
1145 | + /** |
|
1146 | + * Parses the specified query string like the native |
|
1147 | + * function <code>parse_str</code>, without the key |
|
1148 | + * naming limitations. |
|
1149 | + * |
|
1150 | + * Using parse_str, dots or spaces in key names are |
|
1151 | + * replaced by underscores. This method keeps all names |
|
1152 | + * intact. |
|
1153 | + * |
|
1154 | + * It still uses the parse_str implementation as it |
|
1155 | + * is tested and tried, but fixes the parameter names |
|
1156 | + * after parsing, as needed. |
|
1157 | + * |
|
1158 | + * @param string $queryString |
|
1159 | + * @return array |
|
1160 | + * @see ConvertHelper_QueryParser |
|
1161 | + */ |
|
1162 | 1162 | public static function parseQueryString(string $queryString) : array |
1163 | 1163 | { |
1164 | 1164 | $parser = new ConvertHelper_QueryParser(); |
1165 | 1165 | return $parser->parse($queryString); |
1166 | 1166 | } |
1167 | 1167 | |
1168 | - /** |
|
1169 | - * Searches for needle in the specified string, and returns a list |
|
1170 | - * of all occurrences, including the matched string. The matched |
|
1171 | - * string is useful when doing a case insensitive search, as it |
|
1172 | - * shows the exact matched case of needle. |
|
1173 | - * |
|
1174 | - * @param string $needle |
|
1175 | - * @param string $haystack |
|
1176 | - * @param bool $caseInsensitive |
|
1177 | - * @return ConvertHelper_StringMatch[] |
|
1178 | - */ |
|
1168 | + /** |
|
1169 | + * Searches for needle in the specified string, and returns a list |
|
1170 | + * of all occurrences, including the matched string. The matched |
|
1171 | + * string is useful when doing a case insensitive search, as it |
|
1172 | + * shows the exact matched case of needle. |
|
1173 | + * |
|
1174 | + * @param string $needle |
|
1175 | + * @param string $haystack |
|
1176 | + * @param bool $caseInsensitive |
|
1177 | + * @return ConvertHelper_StringMatch[] |
|
1178 | + */ |
|
1179 | 1179 | public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array |
1180 | 1180 | { |
1181 | 1181 | return ConvertHelper_String::findString($needle, $haystack, $caseInsensitive); |
1182 | 1182 | } |
1183 | 1183 | |
1184 | - /** |
|
1185 | - * Like explode, but trims all entries, and removes |
|
1186 | - * empty entries from the resulting array. |
|
1187 | - * |
|
1188 | - * @param string $delimiter |
|
1189 | - * @param string $string |
|
1190 | - * @return string[] |
|
1191 | - */ |
|
1184 | + /** |
|
1185 | + * Like explode, but trims all entries, and removes |
|
1186 | + * empty entries from the resulting array. |
|
1187 | + * |
|
1188 | + * @param string $delimiter |
|
1189 | + * @param string $string |
|
1190 | + * @return string[] |
|
1191 | + */ |
|
1192 | 1192 | public static function explodeTrim(string $delimiter, string $string) : array |
1193 | 1193 | { |
1194 | 1194 | return ConvertHelper_String::explodeTrim($delimiter, $string); |
1195 | 1195 | } |
1196 | 1196 | |
1197 | - /** |
|
1198 | - * Detects the most used end-of-line character in the subject string. |
|
1199 | - * |
|
1200 | - * @param string $subjectString The string to check. |
|
1201 | - * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
1202 | - */ |
|
1197 | + /** |
|
1198 | + * Detects the most used end-of-line character in the subject string. |
|
1199 | + * |
|
1200 | + * @param string $subjectString The string to check. |
|
1201 | + * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
1202 | + */ |
|
1203 | 1203 | public static function detectEOLCharacter(string $subjectString) : ?ConvertHelper_EOL |
1204 | 1204 | { |
1205 | 1205 | return ConvertHelper_EOL::detect($subjectString); |
1206 | 1206 | } |
1207 | 1207 | |
1208 | - /** |
|
1209 | - * Removes the specified keys from the target array, |
|
1210 | - * if they exist. |
|
1211 | - * |
|
1212 | - * @param array $array |
|
1213 | - * @param array $keys |
|
1214 | - */ |
|
1208 | + /** |
|
1209 | + * Removes the specified keys from the target array, |
|
1210 | + * if they exist. |
|
1211 | + * |
|
1212 | + * @param array $array |
|
1213 | + * @param array $keys |
|
1214 | + */ |
|
1215 | 1215 | public static function arrayRemoveKeys(array &$array, array $keys) : void |
1216 | 1216 | { |
1217 | 1217 | ConvertHelper_Array::removeKeys($array, $keys); |
1218 | 1218 | } |
1219 | 1219 | |
1220 | - /** |
|
1221 | - * Checks if the specified variable is an integer or a string containing an integer. |
|
1222 | - * Accepts both positive and negative integers. |
|
1223 | - * |
|
1224 | - * @param mixed $value |
|
1225 | - * @return bool |
|
1226 | - */ |
|
1220 | + /** |
|
1221 | + * Checks if the specified variable is an integer or a string containing an integer. |
|
1222 | + * Accepts both positive and negative integers. |
|
1223 | + * |
|
1224 | + * @param mixed $value |
|
1225 | + * @return bool |
|
1226 | + */ |
|
1227 | 1227 | public static function isInteger($value) : bool |
1228 | 1228 | { |
1229 | 1229 | if(is_int($value)) { |
@@ -1243,52 +1243,52 @@ discard block |
||
1243 | 1243 | return false; |
1244 | 1244 | } |
1245 | 1245 | |
1246 | - /** |
|
1247 | - * Converts an amount of seconds to a DateInterval object. |
|
1248 | - * |
|
1249 | - * @param int $seconds |
|
1250 | - * @return \DateInterval |
|
1251 | - * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
1252 | - * |
|
1253 | - * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
1254 | - */ |
|
1246 | + /** |
|
1247 | + * Converts an amount of seconds to a DateInterval object. |
|
1248 | + * |
|
1249 | + * @param int $seconds |
|
1250 | + * @return \DateInterval |
|
1251 | + * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
1252 | + * |
|
1253 | + * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
1254 | + */ |
|
1255 | 1255 | public static function seconds2interval(int $seconds) : \DateInterval |
1256 | 1256 | { |
1257 | 1257 | return ConvertHelper_DateInterval::fromSeconds($seconds)->getInterval(); |
1258 | 1258 | } |
1259 | 1259 | |
1260 | - /** |
|
1261 | - * Converts a size string like "50 MB" to the corresponding byte size. |
|
1262 | - * It is case insensitive, ignores spaces, and supports both traditional |
|
1263 | - * "MB" and "MiB" notations. |
|
1264 | - * |
|
1265 | - * @param string $size |
|
1266 | - * @return int |
|
1267 | - */ |
|
1260 | + /** |
|
1261 | + * Converts a size string like "50 MB" to the corresponding byte size. |
|
1262 | + * It is case insensitive, ignores spaces, and supports both traditional |
|
1263 | + * "MB" and "MiB" notations. |
|
1264 | + * |
|
1265 | + * @param string $size |
|
1266 | + * @return int |
|
1267 | + */ |
|
1268 | 1268 | public static function size2bytes(string $size) : int |
1269 | 1269 | { |
1270 | 1270 | return self::parseSize($size)->toBytes(); |
1271 | 1271 | } |
1272 | 1272 | |
1273 | - /** |
|
1274 | - * Parses a size string like "50 MB" and returns a size notation instance |
|
1275 | - * that has utility methods to access information on it, and convert it. |
|
1276 | - * |
|
1277 | - * @param string $size |
|
1278 | - * @return ConvertHelper_SizeNotation |
|
1279 | - */ |
|
1273 | + /** |
|
1274 | + * Parses a size string like "50 MB" and returns a size notation instance |
|
1275 | + * that has utility methods to access information on it, and convert it. |
|
1276 | + * |
|
1277 | + * @param string $size |
|
1278 | + * @return ConvertHelper_SizeNotation |
|
1279 | + */ |
|
1280 | 1280 | public static function parseSize(string $size) : ConvertHelper_SizeNotation |
1281 | 1281 | { |
1282 | 1282 | return new ConvertHelper_SizeNotation($size); |
1283 | 1283 | } |
1284 | 1284 | |
1285 | - /** |
|
1286 | - * Creates a URL finder instance, which can be used to find |
|
1287 | - * URLs in a string - be it plain text, or HTML. |
|
1288 | - * |
|
1289 | - * @param string $subject |
|
1290 | - * @return ConvertHelper_URLFinder |
|
1291 | - */ |
|
1285 | + /** |
|
1286 | + * Creates a URL finder instance, which can be used to find |
|
1287 | + * URLs in a string - be it plain text, or HTML. |
|
1288 | + * |
|
1289 | + * @param string $subject |
|
1290 | + * @return ConvertHelper_URLFinder |
|
1291 | + */ |
|
1292 | 1292 | public static function createURLFinder(string $subject) : ConvertHelper_URLFinder |
1293 | 1293 | { |
1294 | 1294 | return new ConvertHelper_URLFinder($subject); |
@@ -110,38 +110,38 @@ discard block |
||
110 | 110 | return $this; |
111 | 111 | } |
112 | 112 | |
113 | - /** |
|
114 | - * Whether to enable sorting the URLs alphabetically (disabled by default). |
|
115 | - * |
|
116 | - * @param bool $enabled |
|
117 | - * @return $this |
|
118 | - */ |
|
113 | + /** |
|
114 | + * Whether to enable sorting the URLs alphabetically (disabled by default). |
|
115 | + * |
|
116 | + * @param bool $enabled |
|
117 | + * @return $this |
|
118 | + */ |
|
119 | 119 | public function enableSorting(bool $enabled=true) : ConvertHelper_URLFinder |
120 | 120 | { |
121 | 121 | $this->setOption('sorting', $enabled); |
122 | 122 | return $this; |
123 | 123 | } |
124 | 124 | |
125 | - /** |
|
126 | - * Whether to include email addresses in the search. |
|
127 | - * This is only relevant when using the getURLs() |
|
128 | - * method. |
|
129 | - * |
|
130 | - * @param bool $include |
|
131 | - * @return ConvertHelper_URLFinder |
|
132 | - */ |
|
125 | + /** |
|
126 | + * Whether to include email addresses in the search. |
|
127 | + * This is only relevant when using the getURLs() |
|
128 | + * method. |
|
129 | + * |
|
130 | + * @param bool $include |
|
131 | + * @return ConvertHelper_URLFinder |
|
132 | + */ |
|
133 | 133 | public function includeEmails(bool $include=true) : ConvertHelper_URLFinder |
134 | 134 | { |
135 | 135 | $this->setOption('include-emails', $include); |
136 | 136 | return $this; |
137 | 137 | } |
138 | 138 | |
139 | - /** |
|
140 | - * Whether to omit the mailto: that is automatically added to all email addresses. |
|
141 | - * |
|
142 | - * @param bool $omit |
|
143 | - * @return ConvertHelper_URLFinder |
|
144 | - */ |
|
139 | + /** |
|
140 | + * Whether to omit the mailto: that is automatically added to all email addresses. |
|
141 | + * |
|
142 | + * @param bool $omit |
|
143 | + * @return ConvertHelper_URLFinder |
|
144 | + */ |
|
145 | 145 | public function omitMailto(bool $omit=true) : ConvertHelper_URLFinder |
146 | 146 | { |
147 | 147 | $this->setOption('omit-mailto', $omit); |
@@ -267,11 +267,11 @@ discard block |
||
267 | 267 | ); |
268 | 268 | } |
269 | 269 | |
270 | - /** |
|
271 | - * Fetches all URLs that can be found in the subject string. |
|
272 | - * |
|
273 | - * @return string[] |
|
274 | - */ |
|
270 | + /** |
|
271 | + * Fetches all URLs that can be found in the subject string. |
|
272 | + * |
|
273 | + * @return string[] |
|
274 | + */ |
|
275 | 275 | public function getURLs() : array |
276 | 276 | { |
277 | 277 | $this->parse(); |
@@ -474,13 +474,13 @@ discard block |
||
474 | 474 | return array_pop($parts); |
475 | 475 | } |
476 | 476 | |
477 | - /** |
|
478 | - * Retrieves all email addresses from the subject string. |
|
479 | - * |
|
480 | - * @return string[] |
|
481 | - * |
|
482 | - * @see omitMailto() |
|
483 | - */ |
|
477 | + /** |
|
478 | + * Retrieves all email addresses from the subject string. |
|
479 | + * |
|
480 | + * @return string[] |
|
481 | + * |
|
482 | + * @see omitMailto() |
|
483 | + */ |
|
484 | 484 | public function getEmails() : array |
485 | 485 | { |
486 | 486 | $this->parse(); |
@@ -506,11 +506,11 @@ discard block |
||
506 | 506 | return $result; |
507 | 507 | } |
508 | 508 | |
509 | - /** |
|
510 | - * Retrieves all URLs as URLInfo instances. |
|
511 | - * |
|
512 | - * @return URLInfo[] |
|
513 | - */ |
|
509 | + /** |
|
510 | + * Retrieves all URLs as URLInfo instances. |
|
511 | + * |
|
512 | + * @return URLInfo[] |
|
513 | + */ |
|
514 | 514 | public function getInfos() : array |
515 | 515 | { |
516 | 516 | $this->parse(); |
@@ -23,24 +23,24 @@ discard block |
||
23 | 23 | */ |
24 | 24 | class URLInfo_Parser |
25 | 25 | { |
26 | - /** |
|
27 | - * @var string |
|
28 | - */ |
|
26 | + /** |
|
27 | + * @var string |
|
28 | + */ |
|
29 | 29 | protected $url; |
30 | 30 | |
31 | - /** |
|
32 | - * @var bool |
|
33 | - */ |
|
31 | + /** |
|
32 | + * @var bool |
|
33 | + */ |
|
34 | 34 | protected $isValid = false; |
35 | 35 | |
36 | - /** |
|
37 | - * @var array |
|
38 | - */ |
|
36 | + /** |
|
37 | + * @var array |
|
38 | + */ |
|
39 | 39 | protected $info; |
40 | 40 | |
41 | - /** |
|
42 | - * @var array|NULL |
|
43 | - */ |
|
41 | + /** |
|
42 | + * @var array|NULL |
|
43 | + */ |
|
44 | 44 | protected $error; |
45 | 45 | |
46 | 46 | /** |
@@ -57,25 +57,25 @@ discard block |
||
57 | 57 | 'git' |
58 | 58 | ); |
59 | 59 | |
60 | - /** |
|
61 | - * Stores a list of all unicode characters in the URL |
|
62 | - * that have been filtered out before parsing it with |
|
63 | - * parse_url. |
|
64 | - * |
|
65 | - * @var string[]string |
|
66 | - */ |
|
60 | + /** |
|
61 | + * Stores a list of all unicode characters in the URL |
|
62 | + * that have been filtered out before parsing it with |
|
63 | + * parse_url. |
|
64 | + * |
|
65 | + * @var string[]string |
|
66 | + */ |
|
67 | 67 | protected $unicodeChars = array(); |
68 | 68 | |
69 | - /** |
|
70 | - * @var bool |
|
71 | - */ |
|
69 | + /** |
|
70 | + * @var bool |
|
71 | + */ |
|
72 | 72 | protected $encodeUTF = false; |
73 | 73 | |
74 | - /** |
|
75 | - * |
|
76 | - * @param string $url The target URL. |
|
77 | - * @param bool $encodeUTF Whether to URL encode any plain text unicode characters. |
|
78 | - */ |
|
74 | + /** |
|
75 | + * |
|
76 | + * @param string $url The target URL. |
|
77 | + * @param bool $encodeUTF Whether to URL encode any plain text unicode characters. |
|
78 | + */ |
|
79 | 79 | public function __construct(string $url, bool $encodeUTF) |
80 | 80 | { |
81 | 81 | $this->url = $url; |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | - /** |
|
92 | - * Retrieves the array as parsed by PHP's parse_url, |
|
93 | - * filtered and adjusted as necessary. |
|
94 | - * |
|
95 | - * @return array |
|
96 | - */ |
|
91 | + /** |
|
92 | + * Retrieves the array as parsed by PHP's parse_url, |
|
93 | + * filtered and adjusted as necessary. |
|
94 | + * |
|
95 | + * @return array |
|
96 | + */ |
|
97 | 97 | public function getInfo() : array |
98 | 98 | { |
99 | 99 | return $this->info; |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | } |
116 | 116 | } |
117 | 117 | |
118 | - /** |
|
119 | - * Finds any non-url encoded unicode characters in |
|
120 | - * the URL, and encodes them before the URL is |
|
121 | - * passed to parse_url. |
|
122 | - */ |
|
118 | + /** |
|
119 | + * Finds any non-url encoded unicode characters in |
|
120 | + * the URL, and encodes them before the URL is |
|
121 | + * passed to parse_url. |
|
122 | + */ |
|
123 | 123 | protected function filterUnicodeChars() : void |
124 | 124 | { |
125 | 125 | $chars = ConvertHelper::string2array($this->url); |
@@ -238,11 +238,11 @@ discard block |
||
238 | 238 | return false; |
239 | 239 | } |
240 | 240 | |
241 | - /** |
|
242 | - * Goes through all information in the parse_url result |
|
243 | - * array, and attempts to fix any user errors in formatting |
|
244 | - * that can be recovered from, mostly regarding stray spaces. |
|
245 | - */ |
|
241 | + /** |
|
242 | + * Goes through all information in the parse_url result |
|
243 | + * array, and attempts to fix any user errors in formatting |
|
244 | + * that can be recovered from, mostly regarding stray spaces. |
|
245 | + */ |
|
246 | 246 | protected function filterParsed() : void |
247 | 247 | { |
248 | 248 | $this->info['params'] = array(); |
@@ -284,13 +284,13 @@ discard block |
||
284 | 284 | } |
285 | 285 | } |
286 | 286 | |
287 | - /** |
|
288 | - * Recursively goes through the array, and converts all previously |
|
289 | - * URL encoded characters with their unicode character counterparts. |
|
290 | - * |
|
291 | - * @param array $subject |
|
292 | - * @return array |
|
293 | - */ |
|
287 | + /** |
|
288 | + * Recursively goes through the array, and converts all previously |
|
289 | + * URL encoded characters with their unicode character counterparts. |
|
290 | + * |
|
291 | + * @param array $subject |
|
292 | + * @return array |
|
293 | + */ |
|
294 | 294 | protected function restoreUnicodeChars(array $subject) : array |
295 | 295 | { |
296 | 296 | $result = array(); |
@@ -314,13 +314,13 @@ discard block |
||
314 | 314 | return $result; |
315 | 315 | } |
316 | 316 | |
317 | - /** |
|
318 | - * Replaces all URL encoded unicode characters |
|
319 | - * in the string with the unicode character. |
|
320 | - * |
|
321 | - * @param string $string |
|
322 | - * @return string |
|
323 | - */ |
|
317 | + /** |
|
318 | + * Replaces all URL encoded unicode characters |
|
319 | + * in the string with the unicode character. |
|
320 | + * |
|
321 | + * @param string $string |
|
322 | + * @return string |
|
323 | + */ |
|
324 | 324 | protected function restoreUnicodeChar(string $string) : string |
325 | 325 | { |
326 | 326 | if(strstr($string, '%')) |
@@ -404,21 +404,21 @@ discard block |
||
404 | 404 | ); |
405 | 405 | } |
406 | 406 | |
407 | - /** |
|
408 | - * Checks whether the URL that was parsed is valid. |
|
409 | - * @return bool |
|
410 | - */ |
|
407 | + /** |
|
408 | + * Checks whether the URL that was parsed is valid. |
|
409 | + * @return bool |
|
410 | + */ |
|
411 | 411 | public function isValid() : bool |
412 | 412 | { |
413 | 413 | return $this->isValid; |
414 | 414 | } |
415 | 415 | |
416 | - /** |
|
417 | - * If the validation failed, retrieves the validation |
|
418 | - * error message. |
|
419 | - * |
|
420 | - * @return string |
|
421 | - */ |
|
416 | + /** |
|
417 | + * If the validation failed, retrieves the validation |
|
418 | + * error message. |
|
419 | + * |
|
420 | + * @return string |
|
421 | + */ |
|
422 | 422 | public function getErrorMessage() : string |
423 | 423 | { |
424 | 424 | if(isset($this->error)) { |
@@ -428,12 +428,12 @@ discard block |
||
428 | 428 | return ''; |
429 | 429 | } |
430 | 430 | |
431 | - /** |
|
432 | - * If the validation failed, retrieves the validation |
|
433 | - * error code. |
|
434 | - * |
|
435 | - * @return int |
|
436 | - */ |
|
431 | + /** |
|
432 | + * If the validation failed, retrieves the validation |
|
433 | + * error code. |
|
434 | + * |
|
435 | + * @return int |
|
436 | + */ |
|
437 | 437 | public function getErrorCode() : int |
438 | 438 | { |
439 | 439 | if(isset($this->error)) { |