Database
1 day ago
Database.php
1 day ago
DatabaseInterface.php
1 year ago
DateTimeAdapter.php
1 day ago
Directory.php
1 day ago
DirectoryInterface.php
1 year ago
Maintenance.php
1 day ago
PhpAdapter.php
1 day ago
SourceDatabase.php
1 day ago
WpAdapter.php
1 day ago
PhpAdapter.php
69 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Adapter; |
| 4 | |
| 5 | use Exception; |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | class PhpAdapter |
| 14 | { |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
| 23 | public function isCallable($maybeCallable): bool |
| 24 | { |
| 25 | |
| 26 | if ($maybeCallable === null) { |
| 27 | return false; |
| 28 | } |
| 29 | |
| 30 | |
| 31 | |
| 32 | if (is_callable($maybeCallable)) { |
| 33 | return true; |
| 34 | } |
| 35 | |
| 36 | |
| 37 | if (strpos($maybeCallable, "::") === false) { |
| 38 | return false; |
| 39 | } |
| 40 | |
| 41 | try { |
| 42 | list($class, $method) = explode('::', $maybeCallable, 2); |
| 43 | if (empty($class) || empty($method)) { |
| 44 | return false; |
| 45 | } |
| 46 | |
| 47 | |
| 48 | return class_exists($class) && in_array($method, get_class_methods($class)); |
| 49 | } catch (Exception $ex) { |
| 50 | return false; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | |
| 55 | |
| 56 | |
| 57 | |
| 58 | public function jsonValidate(string $maybeJsonString): bool |
| 59 | { |
| 60 | |
| 61 | if (function_exists('json_validate')) { |
| 62 | return json_validate($maybeJsonString); // phpcs:ignore |
| 63 | } |
| 64 | |
| 65 | json_decode($maybeJsonString); |
| 66 | return json_last_error() === JSON_ERROR_NONE; |
| 67 | } |
| 68 | } |
| 69 |