Submitted by gouki on 2013, January 28, 2:22 PM
尝试用qq的企业邮箱发一些邮件的时候,发现被文档坑了一小把(不是QQ的错,是我的错)
文档中说smtp发送的时候,得用SSL方式,同时端口为465或者587,于是我在phpmailer里设定了port = 465,于是直接发送。发现报错。老是说邮件地址有问题
1、检查phpmailer,发现。如果设置port为465,这时候其实是要设定SMTPSecure=ssl的
当设置了SMTPSecure='ssl'后,发送成功
2、其实,也可以不用SSL的,只要仍然使用 25端口发送就OK了,并非一定得用SSL来发送。。。
所以,通过QQ企业邮箱的smtp发送邮件就有两个方法 ,ssl和标准的smtp。
Over
Tags: 企业邮箱
PHP | 评论:0
| 阅读:14374
Submitted by gouki on 2013, January 28, 2:16 PM
心里有话想说,心里的痛你懂。
其实我是想表达第一句话的含义,有些话不吐不快
1、带小朋友看电影,在影院里工作人员对那些小孩说请按号入座。于是有个小朋友就说了,是别人抢了我们的座位,我们没有办法啊。说着说着,突然就站起来,大叫,就是TMD那些婊子养的,坐了我们的座位。一时间举座皆惊,这小朋友9~10岁左右,居然说出这些话。。。如今 的家长和老师是怎么教育孩子的?
2、小朋友吃着爆米花,看着电影。老婆说,你爽的很嘛 。小朋友得意的说,是啊,吃爆米花看电影,就是爽
3、年夜饭就是年夜饭
4、职业道德真的很重要,回顾自己工作这么多年,虽然离职的时候代码里会有BUG,但好歹没有窃取过公司信息,也没有散布过公司的信息。。这点我很欣慰,虽然我从来没有什么成绩。
Tags: 喜羊羊
Misc | 评论:0
| 阅读:12475
Submitted by gouki on 2013, January 25, 11:14 AM
说实话,在MAC上面最好的虚拟机,绝对是parallels desktop,没有之一。
试用过几款虚拟机,但效果真的不能让人满意,vmware/vbox都响应没有pd快。而且更重要的是vmware的无缝集成的性能远远不如PD。。。
PD6,我买了,升到了PD7,但在PD7下面retina的分辨率无法调整。
所以想升级到PD8,但因为win用的少,所以现在还在忍着。如果你不想忍,这里有个办法:
说实话,macx.cn上代理的PD只有180左右,如果你真的需要,买一个吧。。。当然,如果你觉得你的时间很多,无所谓每个月折腾这么一次,也完全可以象上面那样一次次的折腾的。
Tags: pd8, vmware, vbox
苹果相关 | 评论:0
| 阅读:18922
Submitted by gouki on 2013, January 24, 11:56 AM
在使用phpstorm创建文件的时候,如果是在filetemplate中出现过的。都会调用默认的模版,这时候,可以在其中调整自己的信息,还是比较方便的,比如我现在就是这样设置的:
XML/HTML代码
- <?php
- /**
- * ${FILE_NAME}
- *
- * @category
- * @package
- * @author gouki <gouki.xiao@gmail.com>
- * @version $Id$
- * @created ${DATE} ${TIME}
- */
- Yii::import("application.controllers.${DIR_NAME}.*");
- class ${NAME} extends Controller{
- public function actions(){
- return array(
- 'index'=>'IndexAction',
- );
- }
- }
嗯,上面的这是标准的代码,不过,如果有命名空间的话。那怎么办呢?因为在官方的模版里,并没有提到这个。。它只提到了这些:
XML/HTML代码
- This is a built-in template. It contains a code fragment that can be included into file templates (Templates tab) with the help of the #parse directive. The template is editable. Along with the static text, code and comments, you can also use the predefined variables that will be then expanded like macros into the corresponding values.
- Predefined variables will take the following values:
- ${FILE_NAME}
-
- current file name
- ${USER}
-
- current user system login name
- ${DATE}
-
- current system date
- ${TIME}
-
- current system time
- ${YEAR}
-
- current year
- ${MONTH}
-
- current month
- ${DAY}
-
- current day of the month
- ${HOUR}
-
- current hour
- ${MINUTE}
-
- current minute
- ${PRODUCT_NAME}
-
- current IDE name
怎么办呢?于是我就想啊想,最后变成了这样:
XML/HTML代码
- <?php
- /**
- *
- *
- * PHP version 5.3.x
- *
- * @category
- * @package
- * @author gouki <gouki.xiao@gmail.com>
- */
- #if (${NAMESPACE})
- namespace ${NAMESPACE};
- #end
-
- /**
- * ${FILE_NAME}
- *
- * @category
- * @package
- * @author gouki <gouki.xiao@gmail.com>
- * @version $Id$
- * @created ${DATE} ${TIME}
- */
- class ${NAME} {
-
- }
如果定义了namespace,那么就在上面写上namespace ${NAMESPACE};
世界清静了好多。关键代码也少写了很多。
当然,其实很多人都是在程序完成后,统一用脚本加上这些注释的。这样倒也是不错。
只是现在这样的方式,在生成API文档的时候会比较方便一点。黑黑
Software | 评论:0
| 阅读:18349
Submitted by gouki on 2013, January 23, 9:51 AM
Yii在自己的AR中实现了relations,于是我们可以利用relations实现一些left join或者其他join能做的事情,常见的大家都懂,什么 belongs_to,has_one,has_many,many_to_many之类的
但用的最多的,一般都是has_one,has_many,毕竟查关联数据这个最方便了。
于是我们就会Table::model()->with('a','b')->findAll($cdbcriteria);
这个时候,如果需要用到a或b的排序,就有点痛苦,直接在$cdbcriteria中写的话,往往会报字段不存在,因此可以尝试这样
1、直接在relations中,在写成a时,直接加入'order'=>'id DESC'之类的内容
2、在with()中写: with(array('a'=>array('order'=>'id DESC'),'b'))
这样是不是就很方便了呢?
当然上面的代码是通过:
PHP代码
- public function with()
- {
- if(func_num_args()>0)
- {
- $with=func_get_args();
- if(is_array($with[0]))
- $with=$with[0];
- if(!empty($with))
- $this->getDbCriteria()->mergeWith(array('with'=>$with));
- }
- return $this;
- }
看了这段代码就基本上了解用法了,手册里也说了:
Specifies which related objects should be eagerly loaded. This method takes variable number of parameters. Each parameter specifies the name of a relation or child-relation. For example,
// find all posts together with their author and comments
Post::model()->with('author','comments')->findAll();
// find all posts together with their author and the author's profile
Post::model()->with('author','author.profile')->findAll();
The relations should be declared in relations().
By default, the options specified in relations() will be used to do relational query. In order to customize the options on the fly, we should pass an array parameter to the with() method. The array keys are relation names, and the array values are the corresponding query options. For example,
Post::model()->with(array(
'author'=>array('select'=>'id, name'),
'comments'=>array('condition'=>'approved=1', 'order'=>'create_time'),
))->findAll();
所以,有时候看看手册还是很重要的。
Tags: yii, with, cdbcriteria
PHP | 评论:0
| 阅读:21202