ok
Direktori : /home2/selectio/public_html/ecommerce-website/website/vendor/spatie/browsershot/src/ |
Current File : /home2/selectio/public_html/ecommerce-website/website/vendor/spatie/browsershot/src/Helpers.php |
<?php namespace Spatie\Browsershot; class Helpers { public static function stringStartsWith($haystack, $needle): bool { $length = strlen($needle); return substr($haystack, 0, $length) === $needle; } public static function stringContains($haystack, $needle): bool { return strpos($haystack, $needle) !== false; } }