摘要: Particle\Validator是一个小巧优雅的实用的PHP验证类库,提供了一个非常简洁的API。它无需依赖其他组件,提供友好的文档,并且有利于扩展。 composer require particle/validator use Particle\Validator\Validator; $v 阅读全文
posted @ 2022-11-24 16:20 _迷途 阅读(122) 评论(0) 推荐(0)
摘要: <?php function formatNum(int $time) { if ($time < 10) { return "0{$time}"; } return $time; } function changeTimeType(int $num): string { $millisecond 阅读全文
posted @ 2022-11-16 19:54 _迷途 阅读(280) 评论(0) 推荐(0)
摘要: <?php function formatNum(int $time) { if ($time < 10) { return "0{$time}"; } return $time; } function changeTimeType(int $num): string { $millisecond 阅读全文
posted @ 2022-11-15 13:38 _迷途 阅读(69) 评论(0) 推荐(0)
摘要: import java.util.ArrayList; public class Hello { public static void main(String[] args) { String s = "我爱JAVA"; System.out.println(s2unicode(s)); } sta 阅读全文
posted @ 2022-09-22 00:08 _迷途 阅读(473) 评论(1) 推荐(0)
摘要: <?php namespace app\admin\validate; use think\validate; class VideoKeywords extends validate { protected $rule = [ 'keyword' => ['require', 'unique' = 阅读全文
posted @ 2022-07-28 17:23 _迷途 阅读(160) 评论(0) 推荐(0)
摘要: import json import os, sys import platform import time from seleniumwire import webdriver from selenium.webdriver.firefox.firefox_binary import Firefo 阅读全文
posted @ 2022-07-28 17:19 _迷途 阅读(452) 评论(0) 推荐(0)
摘要: SELECT CAST(id AS char) AS id FROM `table_name` 我也不知道为啥会导致自动四舍五入,有知道的吗? 阅读全文
posted @ 2022-07-15 16:09 _迷途 阅读(56) 评论(0) 推荐(0)
摘要: function getDateRange($dateStart,$dateEnd,bool $timestamp=false): array { $dateStartTimeStamp = strtotime($dateStart); $dateEndTimeStamp = strtotime($ 阅读全文
posted @ 2022-04-20 13:18 _迷途 阅读(126) 评论(0) 推荐(0)
摘要: 在Base控制器里写: View::assign('aaa','123'); 阅读全文
posted @ 2022-04-11 15:50 _迷途 阅读(47) 评论(0) 推荐(0)
摘要: db_host = "localhost" db_user = "root" db_pass = "root" db_name = "test" db_port = 3306 db_charset = "utf8" # -*- coding: utf-8 -*- """Python连接到 MySQL 阅读全文
posted @ 2022-03-17 09:47 _迷途 阅读(367) 评论(0) 推荐(0)