分享 我喜欢这些话,很激励人。特别是在我最失意的时候~

piaoling  2011-06-20 21:57:04

1、没有伞的孩子必须努力奔跑! .2、你不勇敢,没人替你坚强。 .3、如果心胸不似海,又怎能有海一样的事业。 .4、只有经历过地狱般的折磨,才有征服天堂的力量。只有流过血的手指才能弹出世间的绝唱。 5、流过泪的眼睛更明亮,滴过血的心灵更坚强! 6、志在山顶的人,不会贪念山腰的风景… 7、.前有阻碍,奋力把它冲开,运用炙热的激情,转动心中的期待,血在澎湃,吃苦流汗算什么。 8、对的,坚持;错的,放弃! 9、.宁愿跑起来被拌倒无数次......

类别 :  生活(60)  |  浏览(5340)  |  评论(0)

php 判断数据类型

piaoling  2011-06-20 16:04:37

<? $str=1; $type=gettype($str); echo   $type; ?> 返回的字符串的可能值为:   “boolean”(从   PHP   4   起) “integer” “double”(由于历史原因,如果是浮点型则返回“double”,而不是“float”) “string” “array” “object” “resource”(从   PHP   4   起) “NULL”(从   PHP   4   起) “user   function”(只用于   PHP   ......

类别 :  PHP(78)  |  浏览(4229)  |  评论(0)

Magento: How to change order status programmatically?

piaoling  2011-06-20 14:50:55

Here, I will show you, how you can change your order status programmatically (with PHP coding). First, you need to load your order. If you have order id, you can load order in the following way:-   $orderId = YOUR_ORDER_ID; $order = Mage::getModel('sales/order')                 ->load($orderId); If you have order increment id, you can load order in the following way:- ......

类别 :  magento(258)  |  浏览(3866)  |  评论(0)

magento get distinct Data by sql

piaoling  2011-06-20 11:26:21

           $order =Mage::getModel('sales/order')->getCollection()->addAttributeToSelect('pp_souche')->distinct(true)->getSelect();             $query = (string) $order;             var_dump($query);             $row = Mage::getSingleton('core/resource')->getConnection('core_read')->query($query)->fetchAll(); ......

类别 :  magento(258)  |  浏览(3485)  |  评论(0)

Using Collections in Magento

piaoling  2011-06-17 15:39:42

链接地址:http://www.magentocommerce.com/wiki/5_-_modules_and_development/catalog/using_collections_in_magento Last modified by houtsnip on Fri, June 25, 2010 10:54 Edit this page | Old Revisions      Table of Contents Using Collection s in Magento Collection Manipulation Methods Varien_Data_Collection Varien_Data_Collection _Db Mage_Eav_Model_Entity_Collection ......

类别 :  magento(258)  |  浏览(3901)  |  评论(0)

magento 技术博客

piaoling  2011-06-17 15:37:18

http://www.popo4j.com/category/magento.html ......

类别 :  magento(258)  |  浏览(3486)  |  评论(0)

硫酸写给水的超强情书

piaoling  2011-06-17 13:09:12

亲爱的水:     您好!       请允许我这样叫你,其实这么长时间以来,我—直深爱着你。每当我遇上你,我就有种沸腾的感觉,全身会发出大量的热。当我见不到你时,我甚至会在空气中寻找 你的气息,寻找你的每一丝痕迹,我是多么渴望与你亲密相处。我有时很暴躁,这是我承认的,但这是我+6价的中心硫原子决定的,我无法改变我的脾气,就像我 无法表达我对你的爱一样。       水,我可以对门捷列夫发誓......

类别 :  笑话(31)  |  浏览(5226)  |  评论(0)

(网络文摘)“宅男”你如何才能收获到爱情?

piaoling  2011-06-17 13:03:49

        什么是“宅男”?这个词最早从日本传出来,意思是业余多数时间呆在家里,甚至连工作也是在家中或其他固定的室内,与人比较少交流的男人。这类男人一般比较 内向,比较被动,即使也喜欢和朋友一起出去吃喝玩乐也言语不多,姿态很低调。这样的男人我们身边也不少吧,虽然社会的风气越来越开放开朗,人们都喜欢往户 外走,可还是有一部分男子因为太“循规蹈矩”、“隐藏内秀”而不为广大MM察觉......

类别 :  生活(60)  |  浏览(5278)  |  评论(0)

过来人分享:中国人民大学管理学考研经验谈

piaoling  2011-06-17 09:56:44

 回首考研之路,再去重新体会当日的光荣与梦想,孤独与煎熬,奋斗与拼搏,感慨之余,心境已经平静。毕竟人事已非,环境已易。但考研的这段日子作为一种人生的经历,以及其对以后人生之路的影响,恐怕要永远印入我的记忆。   这段经历有太多的经验与教训,将其述诸笔端,一为过去这段难忘的经历的一点慰藉,二来也希望为后来者提供一些可资借鉴之处。   一、良好心态支持长久复习    考研是一段艰辛和苦涩的生活,也许每个考研的人刚开始的时候......

类别 :  考研(3)  |  浏览(5271)  |  评论(0)

Creating or updating products with Magento SOAP v2 API - a very challenging adventure

piaoling  2011-06-16 16:30:54

In one of our current projects we have to set up a Magento shop for a customer. This project includes the development of an import / export interface to his ERP system. First, I had to make the decision which of the offered Magento Core API's I'll use: XML-RPC, SOAP or SOAP v2. I personally dislike XML-RPC webservices, so I had a closer look at the older SOAP API and the newer v2 one. Deciding between the two SOAP alternatives - or "start the fight with the SOAP v2 API" The biggest advantage of the older version is that is far better documented than the v2 interfa......

类别 :  magento(258)  |  浏览(4537)  |  评论(0)
  • Page:53/146  1452 Blogs
    <<
    >>
    20088
    周日 周一 周二 周三 周四 周五 周六

    文章分类