mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
15 lines
390 B
Bash
15 lines
390 B
Bash
#!/usr/bin/env php
|
|
<?php
|
|
function command_hardware()
|
|
{
|
|
if(function_exists('zend_loader_enabled') && zend_loader_enabled())
|
|
{
|
|
foreach (zend_get_id() as $hardware) {
|
|
echo $hardware, "\n";
|
|
}
|
|
} else {
|
|
echo 'zend guard loader not installed or not enabled!';
|
|
exit;
|
|
}
|
|
}
|
|
command_hardware(); |