16c03-3.php

来自「介绍PHP5的给类型函数应用」· PHP 代码 · 共 18 行

PHP
18
字号
<?php// Require the library://require_once 'mass_email.php';require_once '16c03-2.php';// Create an array of email addresses that we are going to send to every//  time this script is called.$addresses = array('example@eliw.com', 'php@example.com',     'crossbow@example.com', 'eliwhite@example.com',     'SiegfriedFaust@example.com');// Send that mass email to everyone!mass_email($addresses, 'The List <list@example.com>',    'Our next Newsletter Edition', "    This is our next edition of our Newsletter.  Well, I guessthat about sums it up.  Not really much to say right now.", 'mail.example.com');?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?