摘要:
class Person{ // 构造 constructor(x,y){ this.x = x; this.y = y; } toString(){ return (this.x + "的年龄是" +this.y+"岁"); } } export {Per... 阅读全文
木子炜培先生⑴2017底=>(年薪15万)=>31岁 ⑵2018=》(生产生活用品)并且年薪20万=>32岁 ⑶2019=>年薪30万=>把小作坊升级为工厂=>33岁 ⑷2020=>再开一个食品工厂 |
摘要:
class Person{ // 构造 constructor(x,y){ this.x = x; this.y = y; } toString(){ return (this.x + "的年龄是" +this.y+"岁"); } } export {Per... 阅读全文
摘要:
Yii2中多表关联查询(join、joinwith) 我们用实例来说明这一部分 表结构 现在有客户表、订单表、图书表、作者表, 客户表Customer (id customer_name) 订单表Order (id order_name customer_id book_id) 图书表 (id bo 阅读全文
摘要:
$query = Salesorder::find() ->where(['order_id'=>[1,2,3,4]]) ->select(['order_id']) ; $commandQuery = clone $query; echo $commandQuery->createCommand()->getRawSql(); exit; Sale... 阅读全文
摘要:
更多http://www.cnblogs.com/zycbloger/p/6429592.html 阅读全文
摘要:
/etc/init.d/目录下 修改权限,可以运行 设置开机自动启动服务 启动服务: 停止服务: 阅读全文
摘要:
3.允许远程访问redis 若要支持远程访问调试,除了需要开放服务器端口号6379,还需要将配置文件中的bind 127.0.0.1注释掉,但生产环境中应该放开,避免黑客攻击 阅读全文
摘要:
/sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT 写入修改 /etc/init.d/iptables save 保存修改 service iptables restart 重启防火墙,修改生效 阅读全文
摘要:
https://github.com/search?utf8=%E2%9C%93&q=yii2文章地址 http://blog.csdn.net/xmlife/article/details/51247846 下载yii composer global require "fxp/composer-asset-plugin:^1.2.0" composer create-project --pre... 阅读全文
|