Files
addons
extend
alipay
app_alipay
aop
lotusphp_runtime
Autoloader
Cache
Captcha
Cookie
DB
Inflector
Logger
MVC
ObjectUtil
Pagination
RBAC
Router
Session
Url
Validator
Validator.php
ValidatorDtd.php
XML
Config.php
ConfigExpression.php
Lotus.php
Store.php
StoreFile.php
StoreMemory.php
shortcut.php
AopSdk.php
demo.php
version.txt
╦╡├ў.txt
image
org
phpexcel
phpmailer
unionpay
verify
wechat
wxpay
.htaccess
hyhproject
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
qlg.tsgz.moe/extend/app_alipay/lotusphp_runtime/Validator/ValidatorDtd.php
2019-09-06 23:53:10 +08:00

24 lines
366 B
PHP
Executable File

<?php
class LtValidatorDtd
{
public $label;
public $rules;
public $messages;
public function __construct($label, $rules, $messages = null)
{
$this->label = $label;
foreach($rules as $key => $rule)
{
$this->rules[$key] = $rule;
}
if ($messages)
{
foreach($messages as $key => $message)
{
$this->messages[$key] = $message;
}
}
}
}