Ai
2 Star 0 Fork 1

zms/hyperf-casts

forked from zlf/app-hyperf-casts 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
HtmlEscapeCasts.php 615 Bytes
一键复制 编辑 原始数据 按行查看 历史
zms 提交于 2025-03-13 23:48 +08:00 . 3/13
<?php
declare(strict_types=1);
namespace Zms\HyperfCasts;
use Hyperf\Contract\CastsAttributes;
/**
* html转义
* Class ArrjoinCasts
* @package Core\Casts
*/
class HtmlEscapeCasts implements CastsAttributes
{
/**
* 获取结果
*/
public function get($model, string $key, $value, array $attributes): string
{
return is_string($value) ? htmlspecialchars_decode($value) : '';
}
/**
* 设置数据
*/
public function set($model, string $key, $value, array $attributes): string
{
return is_string($value) ? htmlspecialchars($value) : '';
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zms-code/hyperf-casts.git
git@gitee.com:zms-code/hyperf-casts.git
zms-code
hyperf-casts
hyperf-casts
master

搜索帮助