再见西城 发表于 2015-2-4 00:08:00

PHP网页编程之用PHP挪用数据库的存贮进程!

一些真正的强人总会搞出新玩意来丢给你,你不学就落后了,也印证了前人的经验,果然是学无止境啊!   <?php

////////////////////////////////////////////////////////////
//   EmailClass 0.5
//   class for sending mail
//
//   Paul Schreiber
//   php@paulschreiber.com
//   http://paulschreiber.com/
//
//   parameters
//   ----------
//   - subject, message, senderName, senderEmail and toList are required
//   - ccList, bccList and replyTo are optional
//   - toList, ccList and bccList can be strings or arrays of strings
//   (those strings should be valid email addresses
//
//   example
//   -------
//   $m = new email ( "hello there",            // subject
//                  "how are you?",         // message body
//                  "paul",                   // sender's name
//                  "foo@foobar.com",         // sender's email
//                  array("paul@foobar.com", "foo@bar.com"), // To: recipients
//                  "paul@whereever.com"      // Cc: recipient
//                   );
//
//       print "mail sent, result was" . $m->send();
//
//
//

if ( ! defined( 'MAIL_CLASS_DEFINED' ) ) {
      define('MAIL_CLASS_DEFINED', 1 );

class email {

      // the constructor!
      function email ( $subject, $message, $senderName, $senderEmail, $toList, $ccList=0, $bccList=0, $replyTo=0) {
                $this->sender = $senderName . " <$senderEmail>";
                $this->replyTo = $replyTo;
                $this->subject = $subject;
                $this->message = $message;

                // set the To: recipient(s)
                if ( is_array($toList) ) {
                        $this->to = join( $toList, "," );
                } else {
                        $this->to = $toList;
                }

                // set the Cc: recipient(s)
                if ( is_array($ccList) && sizeof($ccList) ) {
                        $this->cc = join( $ccList, "," );
                } elseif ( $ccList ) {
                        $this->cc = $ccList;
                }
                  
                // set the Bcc: recipient(s)
                if ( is_array($bccList) && sizeof($bccList) ) {
                        $this->bcc = join( $bccList, "," );
                } elseif ( $bccList ) {
                        $this->bcc = $bccList;
                }

      }

      // send the message; this is actually just a wrapper for   
      // PHP's mail() function; heck, it's PHP's mail function done right :-)
      // you could override this method to:
      // (a) use sendmail directly
      // (b) do SMTP with sockets
      function send () {
                // create the headers needed by PHP's mail() function

                // sender
                $this->headers = "From: " . $this->sender . "\n";

                // reply-to address
                if ( $this->replyTo ) {
                        $this->headers .= "Reply-To: " . $this->replyTo . "\n";
                }

                // Cc: recipient(s)
                if ( $this->cc ) {
                        $this->headers .= "Cc: " . $this->cc . "\n";
                }

                // Bcc: recipient(s)
                if ( $this->bcc ) {
                        $this->headers .= "Bcc: " . $this->bcc . "\n";
                }
         
                return mail ( $this->to, $this->subject, $this->message, $this->headers );
      }
}


}
?>
学会了PHP,那么学其他的语言,肯定速成,反过来也一样,如果你之前学过其他的语言,那么学PHP肯定快。

柔情似水 发表于 2015-2-4 09:09:19

首先声明:我是一个菜鸟,是一个初学者。学习了一段php后总是感觉自己没有提高,无奈。经过反思我认为我学习过程中存在很多问题,我改变了学习方法后自我感觉有了明显的进步。

山那边是海 发表于 2015-2-9 21:09:00

先学习php和mysql,还有css(html语言很简单)我认为现在的效果比以前的方法好。

只想知道 发表于 2015-2-10 02:28:06

,熟悉html,能用div+css,还有javascript,优先考虑linux。我在开始学习的时候,就想把这些知识一起学习,我天真的认为同时学习能够互相呼应,因为知识是相通的。

飘飘悠悠 发表于 2015-2-28 15:37:51

再就是混迹于论坛啦,咱们的phpchina的论坛就很强大,提出的问题一般都是有达人去解答的,以前的帖子也要多看看也能学到不少前辈们的经验。别的不错的论坛例如php100,javaeye也是很不错的。

仓酷云 发表于 2015-3-11 04:21:13

php是动态网站开发的优秀语言,在学习的时候万万不能冒进。在系统的学习前,我认为不应该只是追求实现某种效果,因为即使你复制他人的代码调试成功,实现了你所期望的效果,你也不了解其中的原理。

乐观 发表于 2015-3-11 17:56:16

在我安装pear包的时候老是提示,缺少某某文件,才发现 那群extension 的排列是应该有一点的顺序,而我安装的版本的排序不是正常的排序。没办法我只好把那群冒号加了上去,只留下我需要使用的扩展。

再现理想 发表于 2015-3-20 04:48:12

开发工具也会慢慢的更专业,每个公司的可能不一样,但是zend studio是个大伙都会用的。

冷月葬花魂 发表于 2015-3-20 17:45:38

首先声明:我是一个菜鸟,是一个初学者。学习了一段php后总是感觉自己没有提高,无奈。经过反思我认为我学习过程中存在很多问题,我改变了学习方法后自我感觉有了明显的进步。

变相怪杰 发表于 2015-3-24 10:51:07

说点我烦的低级错误吧,曾经有次插入mysql的时间 弄了300年结果老报错,其实mysql的时间是有限制的,大概是到203X年具体的记不清啦,囧。

透明 发表于 2015-4-4 15:36:37

php是动态网站开发的优秀语言,在学习的时候万万不能冒进。在系统的学习前,我认为不应该只是追求实现某种效果,因为即使你复制他人的代码调试成功,实现了你所期望的效果,你也不了解其中的原理。

小妖女 发表于 2015-4-12 02:22:46

说php的话,首先得提一下数组,开始的时候我是最烦数组的,总是被弄的晕头转向,不过后来呢,我觉得数组里php里最强大的存储方法,所以建议新手们要学好数组。

金色的骷髅 发表于 2015-4-13 02:06:25

Ps:以上纯属原创,如有雷同,纯属巧合

简单生活 发表于 2015-4-24 05:50:43

首先我是坚决反对新手上来就用框架的,因为对底层的东西一点都不了解,造成知识上的真空,会对以后的发展不利。我的观点上手了解下框架就好,代码还是手写。当然啦如果是位别的编程语言的高手的话,这个就另当别论啦。

若相依 发表于 2015-4-25 03:52:14

小鸟是第一次发帖(我习惯潜水的(*^__^*) 嘻嘻……),有错误之处还请大家批评指正,另外,前些日子听人说有高手能用php写驱动程序,真是学无止境,人外有人,天外有天。

小女巫 发表于 2015-4-28 18:56:20

其实没啥难的,多练习,练习写程序,真正的实践比看100遍都有用。不过要熟悉引擎

兰色精灵 发表于 2015-5-8 06:06:12

如果你可以写完像留言板这样的程序,那么你可以去一些别人的代码了,

不帅 发表于 2015-6-12 07:34:37

说点我烦的低级错误吧,曾经有次插入mysql的时间 弄了300年结果老报错,其实mysql的时间是有限制的,大概是到203X年具体的记不清啦,囧。

深爱那片海 发表于 2015-6-14 18:47:02

做为1门年轻的语言,php一直很努力。
页: [1]
查看完整版本: PHP网页编程之用PHP挪用数据库的存贮进程!