15 lines
250 B
PHP
15 lines
250 B
PHP
<?php
|
|
namespace Core;
|
|
|
|
class Validate
|
|
{
|
|
public static function check($items)
|
|
{
|
|
foreach ($items as $item) {
|
|
$item = preg_replace('/^<[\Ww\/]>$/', '', $item);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|