playinteractive/tools

网站开发的基本工具。

dev-master 2019-06-30 23:42 UTC

This package is not auto-updated.

Last update: 2024-09-15 08:10:59 UTC


README

网站开发的基本工具。

安装

$ composer require playinteractive/tools dev-master

示例

use Functions\Tool;

# HTTPS

Tool::https() ? 'https' : 'http';

# Status Code

Tool::statusCode(404);

# Validate Text

Tool::validateText($text, $db = FALSE, $tag = FALSE, $textarea = FALSE, $decoration = TRUE);

# Replace String

Tool::replaceString($string, $separator = FALSE, $allow = FALSE);