BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
spatie
/
regex
/
src
/
Helpers
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Str.php
<?php namespace Spatie\Regex\Helpers; class Str { public static function endsWith(string $haystack, string $needle): bool { if (strlen($needle) === 0) { return true; } return str_ends_with($haystack, $needle); } }
Save
Cancel