목차
PHP语言开发Paypal支付demo的具体实现
php教程 php手册 PHP语言开发Paypal支付demo的具体实现

PHP语言开发Paypal支付demo的具体实现

Jun 13, 2016 am 08:53 AM
paypal php

PHP语言开发Paypal支付demo的具体实现

一、开发前准备

https://developer.paypal.com/  到paypal的开发者官网注册开发者账号。

用账号登录之后、点击导航上面的 dashboard、进入dashboard面版。如下截图、后续的操作都是在这个面板中操作。

上面截图中菜单 Sandbox下面的Accounts里面能看到你的 sandbox测试的买家账号和卖家账号。2个测试账号里面都有profile选项里面有changepassword可以设置虚拟账号的密码。

上面截图中菜单Sandbox下面的Transactions就是你的交易记录。

点击截图页面右上角的 Create App按钮。创建一个应用。创建好后、会给你提供一个Client ID 和 Secret。这两个可以配置为php常量后面开发中会用到。

二、进入支付Demo开发

随便在本地建立一个开发代码根目录、先建立一个index.html里面就放一个简单的产品名称和产品价格两个input项即可、代码和截图如下:

<ol class="dp-c">
<li class="alt"><span><span>DOCTYPE html> </span></span></li>
<li>
<span>"en"</span><span>> </span>
</li>
<li class="alt"><span>     </span></li>
<li>
<span>        <meta class="string">"utf-8"</span><span>> </span>
</li>
<li class="alt"><span>        <title>支付页面title> </title></span></li>
<li><span>    head> </span></li>
<li class="alt"><span>     </span></li>
<li><span>        <div> <li class="alt">
<span>            <form class="string">"checkout.php"</form></span><span> method=</span><span class="string">"post"</span><span> autocomplete=</span><span class="string">"off"</span><span>> </span>
</li>
<li>
<span>                <label class="keyword">for</label></span><span>=</span><span class="string">"item"</span><span>> </span>
</li>
<li class="alt"><span>                    产品名称 </span></li>
<li>
<span>                    <input class="string">"text"</span><span> name=</span><span class="string">"product"</span><span>> </span>
</li>
<li class="alt"><span>                label> </span></li>
<li><span>                <br> </span></li>
<li class="alt">
<span>                <label class="keyword">for</label></span><span>=</span><span class="string">"amount"</span><span>> </span>
</li>
<li><span>                    价格 </span></li>
<li class="alt">
<span>                    <input class="string">"text"</span><span> name=</span><span class="string">"price"</span><span>> </span>
</li>
<li><span>                label> </span></li>
<li class="alt"><span>                <br> </span></li>
<li>
<span>                <input class="string">"submit"</span><span> value=</span><span class="string">"去付款"</span><span>> </span>
</li>
<li class="alt"><span>            form> </span></li>
<li><span>        div> </span></li>
<li class="alt"><span>    body> </span></li>
<li><span>html> </span></li>
<p style="text-align: center;"></p>
<p>输入产品名称 和 价格。点击去付款就会到paypal的付款页面。用你的sandbox测试买家账号去付款。就会发现付款成功。然后登陆你的测试卖家账号。会发现卖家账号已经收到付款。当然这里会扣除paypal收取的手续费。手续费收的是卖家的。</p>
<p>下面来具体看看php是怎么实现的。首先先要把paypal提供的 php-sdk给弄到你的代码目录中来。这里介绍使用php的包管理器composer来获取最新sdk、当然你可以可以从github等其他渠道获取最新的paypal php-sdk。</p>
<p>默认你的电脑已经安装composer了。如果没有自己去度娘或者google下composer安装。</p>
<p>然后在你的代码根目录写一个composer.json文件来获取包内容。json文件代码如下: </p>

<p><span style="line-height: 1.5 !important;">{<br>
    </span>"require" :<span style="line-height: 1.5 !important;"> {         </span>"paypal/rest-api-sdk-php" : "1.5.1"<span style="line-height: 1.5 !important;"><br>
    }<br>
}</span></p>

<p>这里如果是 linux/unix系统就直接再根目录执行composer install来获取包内容。</p>
<p>安装好之后。根目录下面会产生一个vendor目录。里面有composer 和 paypal两个子目录。composer里面实现了自动加载、paypal则是你的sdk内容。</p>
<p>接 下来我们来写一个公共文件这里默认用 app/start.php、你的项目中可以自定义)、其实里面就只是实现了  sdk的autoload.php自动加载 和 创建刚才上面的的client id  和  secret生成的paypal支付对象实例。start.php代码如下:</p>
php<br>
<p><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">require</span> "vendor/autoload.php"; <span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">//</span><span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">载入sdk的自动加载文件</span> <span style="color: rgb(0, 128, 128); line-height: 1.5 !important;">define</span>('SITE_URL', 'http://www.paydemo.com'); <span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">//</span><span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">网站url自行定义 //创建支付对象实例</span> <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$paypal</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> \PayPal\Rest\ApiContext(     </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> \PayPal\Auth\OAuthTokenCredential(         </span>'你的Client ID'         '你的secret'<span style="line-height: 1.5 !important;"><br>
    )<br>
);</span><span class="cnblogs_code_copy" style="padding-right: 5px; line-height: 1.5 !important;"><br type="_moz">
</span></p>

<p>接下来就来实现表单中提交的处理文件 checkout.php。代码内容如下:</p>
php
<p><span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">/*</span><span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">*<br>
* @author xxxxxxxx<br>
* @brief 简介:<br>
* @date 15/9/2<br>
* @time 下午5:00<br>
</span><span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">*/</span><br>
<span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\Payer;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\Item;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\ItemList;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\Details;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\Amount;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\Transaction;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\RedirectUrls;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> \PayPal\Api\Payment;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span> \PayPal\<span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">Exception</span><span style="line-height: 1.5 !important;">\PayPalConnectionException;<br>
<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">require</span> "app/start.php"<span style="line-height: 1.5 !important;">; </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">if</span> (!<span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">isset</span>(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_POST</span>['product'], <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_POST</span>['price'<span style="line-height: 1.5 !important;">])) {     </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">die</span>("lose some params"<span style="line-height: 1.5 !important;">); } </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$product</span> = <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_POST</span>['product'<span style="line-height: 1.5 !important;">]; </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$price</span> = <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_POST</span>['price'<span style="line-height: 1.5 !important;">]; </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$shipping</span> = 2.00; <span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">//</span><span style="color: rgb(0, 128, 0); line-height: 1.5 !important;">运费</span>  <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$total</span> = <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$price</span> + <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$shipping</span><span style="line-height: 1.5 !important;">;  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payer</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> Payer(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payer</span>->setPaymentMethod('paypal'<span style="line-height: 1.5 !important;">);  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$item</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> Item(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$item</span>->setName(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$product</span><span style="line-height: 1.5 !important;">)     </span>->setCurrency('USD'<span style="line-height: 1.5 !important;">)     </span>->setQuantity(1<span style="line-height: 1.5 !important;">)     </span>->setPrice(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$price</span><span style="line-height: 1.5 !important;">);  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$itemList</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> ItemList(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$itemList</span>->setItems([<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$item</span><span style="line-height: 1.5 !important;">]);  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$details</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> Details(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$details</span>->setShipping(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$shipping</span><span style="line-height: 1.5 !important;">)     </span>->setSubtotal(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$price</span><span style="line-height: 1.5 !important;">);  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$amount</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> Amount(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$amount</span>->setCurrency('USD'<span style="line-height: 1.5 !important;">)     </span>->setTotal(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$total</span><span style="line-height: 1.5 !important;">)     </span>->setDetails(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$details</span><span style="line-height: 1.5 !important;">);  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$transaction</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> Transaction(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$transaction</span>->setAmount(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$amount</span><span style="line-height: 1.5 !important;">)     </span>->setItemList(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$itemList</span><span style="line-height: 1.5 !important;">)     </span>->setDescription("支付描述内容"<span style="line-height: 1.5 !important;">)     </span>->setInvoiceNumber(<span style="color: rgb(0, 128, 128); line-height: 1.5 !important;">uniqid</span><span style="line-height: 1.5 !important;">());  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$redirectUrls</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> RedirectUrls(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$redirectUrls</span>->setReturnUrl(SITE_URL . '/pay.php?success=true'<span style="line-height: 1.5 !important;">)     </span>->setCancelUrl(SITE_URL . '/pay.php?success=false'<span style="line-height: 1.5 !important;">);  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payment</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> Payment(); </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payment</span>->setIntent('sale'<span style="line-height: 1.5 !important;">)     </span>->setPayer(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payer</span><span style="line-height: 1.5 !important;">)     </span>->setRedirectUrls(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$redirectUrls</span><span style="line-height: 1.5 !important;">)     </span>->setTransactions([<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$transaction</span><span style="line-height: 1.5 !important;">]);  </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">try</span><span style="line-height: 1.5 !important;"> {     </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payment</span>->create(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$paypal</span><span style="line-height: 1.5 !important;">); } </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">catch</span> (PayPalConnectionException <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$e</span><span style="line-height: 1.5 !important;">) {     </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">echo</span> <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$e</span>-><span style="line-height: 1.5 !important;">getData();     </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">die</span><span style="line-height: 1.5 !important;">(); }  </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$approvalUrl</span> = <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payment</span>-><span style="line-height: 1.5 !important;">getApprovalLink(); </span><span style="color: rgb(0, 128, 128); line-height: 1.5 !important;">header</span>("Location: {<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$approvalUrl</span>}");<span class="cnblogs_code_copy" style="padding-right: 5px; line-height: 1.5 !important;"><br type="_moz">
</span></p>

<p>checkout.php通过表单提交上来的参数对支付具体细节和参数进行初始化和设置。这里只列出了常用的部分。paypal提供了很多参数设置。具体更丰富的可以自己参考paypal官方开发者文档。</p>
<p>checkout.php设置完参数之后。会生成一个支付链接。用header跳转到这个支付链接就是paypal的支付页面)到这个支付页面上面就可以用你的sandbox提供的buyer账号去支付了。截图如下:</p>
<p style="text-align: center;"></p>
<p>用buyer账号支付完成之后。去看看你的sandbox的商家账户余额吧。就会发现已经收到了扣除手续费外的钱了。</p>
<p>这里支付成功 或者 失败后还有一个回调的处理。回调处理的php文件再上面的checkout.php里面的setReturnUrl处设置。这里设置的是/pay.php?success=true </p>
<p>接下来我们来看看pay.php是怎么简单处理回调的。先贴上pay.php的代码:</p>

<p>php</p>
<p><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">require</span> 'app/start.php'<span style="line-height: 1.5 !important;">;<br>
<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> PayPal\Api\Payment;<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">use</span><span style="line-height: 1.5 !important;"> PayPal\Api\PaymentExecution;<br>
<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">if</span>(!<span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">isset</span>(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_GET</span>['success'], <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_GET</span>['paymentId'], <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_GET</span>['PayerID'<span style="line-height: 1.5 !important;">])){<br>
    </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">die</span><span style="line-height: 1.5 !important;">();<br>
}<br>
<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">if</span>((bool)<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_GET</span>['success']=== 'false'<span style="line-height: 1.5 !important;">){<br>
<br>
    </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">echo</span> 'Transaction cancelled!'<span style="line-height: 1.5 !important;">;<br>
    </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">die</span><span style="line-height: 1.5 !important;">();<br>
}<br>
<br>
</span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$paymentID</span> = <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_GET</span>['paymentId'<span style="line-height: 1.5 !important;">];<br>
</span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payerId</span> = <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$_GET</span>['PayerID'<span style="line-height: 1.5 !important;">];<br>
<br>
</span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payment</span> = Payment::get(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$paymentID</span>, <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$paypal</span><span style="line-height: 1.5 !important;">);<br>
<br>
</span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$execute</span> = <span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">new</span><span style="line-height: 1.5 !important;"> PaymentExecution();<br>
</span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$execute</span>->setPayerId(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payerId</span><span style="line-height: 1.5 !important;">);<br>
<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">try</span><span style="line-height: 1.5 !important;">{<br>
    </span><span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$result</span> = <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$payment</span>->execute(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$execute</span>, <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$paypal</span><span style="line-height: 1.5 !important;">);<br>
}</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">catch</span>(<span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">Exception</span> <span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$e</span><span style="line-height: 1.5 !important;">){<br>
    </span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">die</span>(<span style="color: rgb(128, 0, 128); line-height: 1.5 !important;">$e</span><span style="line-height: 1.5 !important;">);<br>
}<br>
</span><span style="color: rgb(0, 0, 255); line-height: 1.5 !important;">echo</span> '支付成功!感谢支持!';<span class="cnblogs_code_copy" style="padding-right: 5px; line-height: 1.5 !important;"><br type="_moz">
</span></p>

<p>好了。到这里一个简单的paypal支付的demo其实已经走通了。懂得支付原理之后、想要再你自己的项目里面进行更丰富的扩展、就去paypal的官方文档查看更多具体的开发项设置。包括交易明细的获取等等都是可以实现的。这里就不具体讲下去了。</p>
 
<p class="blank10"></p> 
 
 



<p class="blank1"></p>

<hr style="border-top: #555555 1px solid; height: 1px; border-right: medium none; border-bottom: medium none; border-left: medium none">

<hr style="border-top: #555555 1px solid; height: 1px; border-right: medium none; border-bottom: medium none; border-left: medium none">





</div></span></li>
</ol>
로그인 후 복사
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

인기 기사

R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25 : Myrise에서 모든 것을 잠금 해제하는 방법
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

Ubuntu 및 Debian용 PHP 8.4 설치 및 업그레이드 가이드 Ubuntu 및 Debian용 PHP 8.4 설치 및 업그레이드 가이드 Dec 24, 2024 pm 04:42 PM

PHP 8.4는 상당한 양의 기능 중단 및 제거를 통해 몇 가지 새로운 기능, 보안 개선 및 성능 개선을 제공합니다. 이 가이드에서는 Ubuntu, Debian 또는 해당 파생 제품에서 PHP 8.4를 설치하거나 PHP 8.4로 업그레이드하는 방법을 설명합니다.

CakePHP 날짜 및 시간 CakePHP 날짜 및 시간 Sep 10, 2024 pm 05:27 PM

cakephp4에서 날짜와 시간을 다루기 위해 사용 가능한 FrozenTime 클래스를 활용하겠습니다.

CakePHP 파일 업로드 CakePHP 파일 업로드 Sep 10, 2024 pm 05:27 PM

파일 업로드 작업을 위해 양식 도우미를 사용할 것입니다. 다음은 파일 업로드의 예입니다.

CakePHP 토론 CakePHP 토론 Sep 10, 2024 pm 05:28 PM

CakePHP는 PHP용 오픈 소스 프레임워크입니다. 이는 애플리케이션을 훨씬 쉽게 개발, 배포 및 유지 관리할 수 있도록 하기 위한 것입니다. CakePHP는 강력하고 이해하기 쉬운 MVC와 유사한 아키텍처를 기반으로 합니다. 모델, 뷰 및 컨트롤러 gu

PHP 개발을 위해 Visual Studio Code(VS Code)를 설정하는 방법 PHP 개발을 위해 Visual Studio Code(VS Code)를 설정하는 방법 Dec 20, 2024 am 11:31 AM

VS Code라고도 알려진 Visual Studio Code는 모든 주요 운영 체제에서 사용할 수 있는 무료 소스 코드 편집기 또는 통합 개발 환경(IDE)입니다. 다양한 프로그래밍 언어에 대한 대규모 확장 모음을 통해 VS Code는

CakePHP 빠른 가이드 CakePHP 빠른 가이드 Sep 10, 2024 pm 05:27 PM

CakePHP는 오픈 소스 MVC 프레임워크입니다. 이를 통해 애플리케이션 개발, 배포 및 유지 관리가 훨씬 쉬워집니다. CakePHP에는 가장 일반적인 작업의 과부하를 줄이기 위한 여러 라이브러리가 있습니다.

PHP에서 HTML/XML을 어떻게 구문 분석하고 처리합니까? PHP에서 HTML/XML을 어떻게 구문 분석하고 처리합니까? Feb 07, 2025 am 11:57 AM

이 튜토리얼은 PHP를 사용하여 XML 문서를 효율적으로 처리하는 방법을 보여줍니다. XML (Extensible Markup Language)은 인간의 가독성과 기계 구문 분석을 위해 설계된 다목적 텍스트 기반 마크 업 언어입니다. 일반적으로 데이터 저장 AN에 사용됩니다

문자열로 모음을 계산하는 PHP 프로그램 문자열로 모음을 계산하는 PHP 프로그램 Feb 07, 2025 pm 12:12 PM

문자열은 문자, 숫자 및 기호를 포함하여 일련의 문자입니다. 이 튜토리얼은 다른 방법을 사용하여 PHP의 주어진 문자열의 모음 수를 계산하는 방법을 배웁니다. 영어의 모음은 A, E, I, O, U이며 대문자 또는 소문자 일 수 있습니다. 모음이란 무엇입니까? 모음은 특정 발음을 나타내는 알파벳 문자입니다. 대문자와 소문자를 포함하여 영어에는 5 개의 모음이 있습니다. a, e, i, o, u 예 1 입력 : String = "Tutorialspoint" 출력 : 6 설명하다 문자열의 "Tutorialspoint"의 모음은 u, o, i, a, o, i입니다. 총 6 개의 위안이 있습니다

See all articles