ok
Direktori : /home2/selectio/www/billingsoftwarenew/core/vendor/starkbank/ecdsa/src/utils/ |
Current File : /home2/selectio/www/billingsoftwarenew/core/vendor/starkbank/ecdsa/src/utils/file.php |
<?php namespace EllipticCurve\Utils; class File { static function read($path, $mode="r") { $file = fopen($path, $mode); $content = fread($file, filesize($path)); fclose($file); return $content; } } ?>