We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is_windows_os
1 parent 4bcbd39 commit 53aefd1Copy full SHA for 53aefd1
README.md
@@ -75,6 +75,9 @@ Provides Laravel-specific and pure PHP helper functions.
75
- [str_lower](#str_lower)
76
- [str_upper](#str_upper)
77
78
+- [System](#system)
79
+ - [is_windows_os](#is_windows_os)
80
+
81
- [Xml](#xml)
82
- [xml_to_array](#xml_to_array)
83
- [array_to_xml](#array_to_xml)
@@ -437,6 +440,18 @@ $upper = str_upper('TeSt');
437
440
// TEST
438
441
```
439
442
443
+## System
444
445
+#### `is_windows_os()`
446
447
+Checks if php is running on Windows OS or not:
448
449
+```php
450
+$isWindowsOs = is_windows_os();
451
452
+// boolean
453
+```
454
455
## Xml
456
457
#### `xml_to_array()`
0 commit comments