search
HomeBackend DevelopmentPHP TutorialPHP development of WeChat payment and Alipay payment examples

This article mainly shares with you PHP development of WeChat payment and Alipay payment examples. There is no explanation about the payment process. You can search on the PHP Chinese website by yourself.

  • ##WeChat payment

    ##
    项目前提:本人用的是tp框架,PHP语言下载到微信平台提供的微信支付接口文件,放在了tp第三方类库vendor,命名为WxpayAPI,

WxpayAPI/lib/WxPay.Api.php 接口访问类;
WxpayAPI/lib/WxPay.Config.php 配置账号信息;
WxpayAPI/lib/WxPay.Data.php 数据对象基础类;
WxpayAPI/lib/WxPay.Exception.php 微信支付API异常类;
WxpayAPI/lib/WxPay.Notify.php 回调基础类
WxpayAPI/example/WxPay.JsApiPay.php JSAPI支付实现类


1. Partially modified the source code

(1)WxPay.Api.php 里注释掉
        //require_once "WxPay.Exception.php";
        //require_once "WxPay.Config.php";
        //require_once "WxPay.Data.php";
 
(2)WxPay.Config.php里
        需要根据商户信息对APPID , MCHID ,KEY , APPSECRET 进行配置。
 
(3)WxPay.Data.php 里注释掉
        //require_once "WxPay.Config.php";
        //require_once "WxPay.Exception.php";
 
(4)WxPay.JsApiPay.php 里注释掉
        //require_once "../lib/WxPay.Api.php";

After configuring these, the next step is our focus. .

2. In the order controller GoodsController.class.php there are order function sure() and callback information function Callback_url()

/**
* 提交订单函数
*/
public function sure() {
       $o_model = D("Wine/Orders");
 
       if (IS_AJAX) {
           $data = I("post.");
           if ($o_model->create($data)) {
 
               if (!sp_check_verify_code()) {
                   $this->error("验证码错误!");
               }
 
               #生成随机订单号
               $order_code = 'O' . date('YmdHis') . $o_model->get_order_code(4);
               while ($o_model->findone(array("order_code" => $order_code))) {
                   $order_code = 'O' . date('YmdHis') . $o_model->get_order_code(4);
               }
               $data['order_code'] = $order_code;
               $addr[0] = $_POST['prov'];
               $addr[1] = $_POST['city'];
               $addr[2] = $_POST['dist'];
               $addr[3] = $_POST['area'];
               $data['area'] = serialize($addr);
               $data['create_time'] = time();
               $data['update_time'] = time();
 
               if ($data['pay_id'] == 1) {
                   $data['order_status'] = 11; //已付款
                   $data['status'] = '1';
               } else {
                   $data['order_status'] = 10; //待付款
                   $data['status'] = '1';
               }
               //函数调用 返回信息
               $this->Callback_url($data);
           } else {
               $this->error($o_model->getError());
           }
       } else {
           $this->error($o_model->getError());
       }
   }
 
    /**
    * 回调信息函数
    * @param type $data
    */
   public function Callback_url($data) {
       $o_model = D("Wine/Orders");
       $add_id = $o_model->add($data);
       if (!$add_id) {
           $this->error("订单提交失败,请稍后重试!");
       }
     if ('4' == $data['pay_id']) {
           if ('4' == $data['pay_id']) {
           //微信支付
           $msg = '正在为您跳转到微信支付页面,请等待……';
           $url = "/index.php/wine/wxpay/index/?o_id=$add_id";
      }
       $this->success("订单提交成功!" . $msg, $url);
   }

##3.
[Key point! ! ! ]

WxpayController .class.php WeChat payment controller, implements the call to the WeChat interface

<?php
 
/**
 * 微信支付接口调用
 */
 
namespace Wine\Controller;
 
use Common\Controller\HomebaseController;
 
class WxpayController extends HomebaseController {
 
    public function _initialize() {
        parent::_initialize();
 
        Vendor("WxpayAPI/example/log");//订单数据写入日志
        //注: 引入第三方类库中的微信接口文件,对于文件名含有.的,皆用#代替连接才能引入,后缀名不写。
        Vendor("WxpayAPI/example/WxPay#JsApiPay");
        Vendor("WxpayAPI/lib/WxPay#Config");
        Vendor("WxpayAPI/lib/WxPay#Data");
        Vendor("WxpayAPI/lib/WxPay#Exception");
        Vendor("WxpayAPI/lib/WxPay#Notify");
        Vendor("WxpayAPI/lib/WxPay#Api");
        //初始化日志
        $logHandler = new \CLogFileHandler("/projects/wine.huishuocs.com/data/pay_log/" . date(&#39;Y-m-d&#39;) . &#39;.log&#39;);
        $log = \Log::Init($logHandler, 15);
        $this->model = D("Wine/Orders");
        $this->url = MODULE_NAME . &#39;/&#39; . CONTROLLER_NAME . &#39;/index&#39;;
    }
 
    /**
     * 显示支付页面
     *
     */
    public function index() {
        // 判断当前订单是否被支付
        $orderid = I("get.o_id", 0, "intval");
        $orderid || $this->error("非法操作!");
        $this->assign(&#39;orderid&#39;,$orderid);
        $info = $this->model->findone(array("a.id" => $orderid, &#39;a.status&#39; => array(&#39;neq&#39;, &#39;-1&#39;)));
        $info || $this->error("暂未查询到该订单!");
        //10代表订单待支付的状态
        if ($info[&#39;order_status&#39;] != 10) {
            $this->error("订单已支付!");
        }
        //①、获取用户openid
        $tools = new \JsApiPay();
        $openId = $tools->GetOpenid(); #无法使用
        //初始化日志
        \Log::INFO(&#39;订单&#39; . var_export($info, true));
        $out_trade_no = \WxPayConfig::MCHID . date("YmdHis");
        $this->model->where(array("id" => $orderid))->save(array(&#39;out_trade_no&#39; => $out_trade_no));
//        $openId ="123"; #无法使用
        //②、统一下单
        $input = new \WxPayUnifiedOrder();
        $input->SetBody($info[&#39;mode_name&#39;]);
        $input->SetAttach($orderid);
        $input->SetOut_trade_no($out_trade_no);
//        $input->SetTotal_fee($orderArr[&#39;total_price&#39;]*100);实际支付价格
        $input->SetTotal_fee($info[&#39;pay_price&#39;]*100); //测试时请将支付价格改为0.01,土豪请避开此注释
        $this->assign(&#39;pay_price&#39;,$info[&#39;pay_price&#39;]);
        $input->SetTime_start(date("YmdHis"));
        $input->SetTime_expire(date("YmdHis", time() + 600));
//        $input->SetGoods_tag("test");# 优惠券
        $input->SetNotify_url(&#39;http://&#39; . $_SERVER[&#39;HTTP_HOST&#39;] . "/index.php/Wine/Wxpay/callback"); //回调地址
        $input->SetTrade_type("JSAPI");
        $input->SetOpenid($openId);
        $order = \WxPayApi::unifiedOrder($input);
//        echo &#39;<font color="#f00"><b>统一下单支付单信息</b></font><br/>&#39;;
//        $this->printf_info($order);//打印参数
              $this->assign(&#39;o_id&#39;,$orderid);
        $this->assign(&#39;jsApiParameters&#39;, $tools->GetJsApiParameters($order));
        //获取共享收货地址js函数参数
//        $this->assign(&#39;editAddress&#39;, $tools->GetEditAddressParameters());
        $this->display(&#39;wxpay&#39;);
        exit;
    }
 
    /**
     * 打印输出数组信息
     * @param type $data
     */
    public function printf_info($data) {
        foreach ($data as $key => $value) {
            echo "<font color=&#39;#00ff55;&#39;>$key</font> : $value <br/>";
        }
    }
 
    /* 支付成功回调函数 */
 
    public function callback() {
        /* 返回给微信服务器 */
//        $mes = array(
//            &#39;return_code&#39; => &#39;SUCCESS&#39;,
//            &#39;return_msg&#39; => &#39;OK&#39;
//        );
//        $this->ajaxReturn($mes, &#39;XML&#39;);
        $logHandler = new \CLogFileHandler("/projects/wine.huishuocs.com/data/pay_log/" . date(&#39;Y-m-d&#39;) . &#39;.log&#39;);
        $log = \Log::Init($logHandler, 15);
        //$streamData = isset($GLOBALS[&#39;HTTP_RAW_POST_DATA&#39;]) ? $GLOBALS[&#39;HTTP_RAW_POST_DATA&#39;] : &#39;&#39;;
 
        $streamData = file_get_contents(&#39;php://input&#39;);
        if ($streamData != &#39;&#39;) {
            $arr = $this->xmlToArray($streamData);
            \Log::INFO(&#39;支付&#39; . var_export($arr, true));
        } else {
            $ret = false;
        }
        // 回调值
        if (!empty($arr)) {
            # 数据
             \Log::INFO(&#39;数据1&#39; . var_export($arr, true));
            #修改订单状态
            $out_trade_no = $arr[&#39;out_trade_no&#39;];
            $newArr = array(&#39;order_status&#39; => 11,&#39;status&#39;=>1);
            $this->model->where(array("out_trade_no" => $out_trade_no))->save($newArr);
            $info = $this->model->findone(array("a.out_trade_no" => $out_trade_no, &#39;a.status&#39; => array(&#39;neq&#39;, &#39;-1&#39;)));
            $sql =  $this->model->getLastSql();
            \Log::INFO(&#39;数据2&#39; . $sql);
            #添加支付记录pay
            $pay = array(
                &#39;payment_code&#39; => &#39;wxpay&#39;,
                &#39;trade_no&#39;=>$info[&#39;order_code&#39;],
                &#39;out_trade_no&#39;=>$out_trade_no,
                &#39;order_id&#39;=>$info[&#39;id&#39;],
                &#39;create_time&#39;=>time()
            );
            M(&#39;payment_record&#39;)->add($pay);          
        }
 
        /* 返回给微信服务器 */
        $mes = array(
            &#39;return_code&#39; => &#39;SUCCESS&#39;,
            &#39;return_msg&#39; => &#39;OK&#39;
        );
        $this->ajaxReturn($mes, &#39;XML&#39;);
    }
 
    //将XML转为array
    public function xmlToArray($xml) {
        //禁止引用外部xml实体
        libxml_disable_entity_loader(true);
        $values = json_decode(json_encode(simplexml_load_string($xml, &#39;SimpleXMLElement&#39;, LIBXML_NOCDATA)), true);
        return $values;
    }
 
}
 
?>

4. Front-end WeChat payment page wxpay.html

<html>
    <head>
        <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
        <meta name="viewport" content="width=device-width, initial-scale=1"/>
        <link href="__TMPL__Public/css/weui.css" type="text/css" rel="stylesheet"/>
        <title>微信订单支付</title>
        <script type="text/javascript">
            //调用微信JS api 支付
            function jsApiCall()
            {
                WeixinJSBridge.invoke(
                        &#39;getBrandWCPayRequest&#39;,
                        <php> echo $jsApiParameters; </php>,
                        function(res) {
                            WeixinJSBridge.log(res.err_msg);
                            if (res.err_msg == "get_brand_wcpay_request:ok") {
//                            alert(res.err_code + res.err_desc + res.err_msg);
                                // 成功跳转页面
                                window.location.href = &#39;{:U("Orders/pay_ok",array("o_id"=>$o_id))}&#39;;
                            } else {
                                // 统一跳转
                            }
 
                        }
                );
            }
 
            function callpay()
            {
                if (typeof WeixinJSBridge == "undefined") {
                    if (document.addEventListener) {
                        document.addEventListener(&#39;WeixinJSBridgeReady&#39;, jsApiCall, false);
                    } else if (document.attachEvent) {
                        document.attachEvent(&#39;WeixinJSBridgeReady&#39;, jsApiCall);
                        document.attachEvent(&#39;onWeixinJSBridgeReady&#39;, jsApiCall);
                    }
                } else {
                    jsApiCall();
                }
            }
        </script>
    </head>
    <body>
        <br/>
        <p class="container" id="container"><p class="msg">
                <p class="weui_msg">
                    <p class="weui_icon_area"><i class="weui_icon_success weui_icon_msg"></i></p>
                    <p class="weui_text_area">
                        <h2 id="订单已生成">订单已生成</h2>
                        <p class="weui_msg_desc">该笔订单支付金额为:<php> echo $pay_price;</php></p>
                    </p>
                    <p class="weui_opr_area">
                        <p class="weui_btn_area">
                            <a href="javascript:;" class="weui_btn weui_btn_primary" onclick="callpay()">立即支付</a>
                            <!--<a href="{:U(&#39;Order/pay_ok&#39;,array(&#39;o_id&#39;=>$_GET[&#39;o_id&#39;]))}" class="weui_btn weui_btn_default">取消支付</a>-->
                        </p>
                    </p>
                    <!--                    <p class="weui_extra_area">
                                            <a href="/wap/order/order_det/<?php echo $order[&#39;id&#39;]?>.html">查看详情</a>
                                        </p>-->
                </p>
            </p>
        </p>
    </body>
</html>

5. The payment successfully jumps to OrderController.class.php, and the order payment is completed

At this point, the WeChat payment process ends.

  • Alipay payment

    Not much to say, just direct Get on the code!
  • 注:1.支付文件是从支付宝上直接拿过来的2.依旧是TP框架
    【1】将文件放入第三方类库:
    /**
    * 支付页面
    */
        public function pay_ok() {
            $o_id = I("get.o_id", 0, "intval");
            $info = $this->model->findone(array("a.id" => $o_id, &#39;a.status&#39; => array(&#39;neq&#39;, &#39;-1&#39;)));
            if (empty($info)) {
                # 获取最新可用的商品编号
                $goods = D(&#39;Goods&#39;)->where(array(&#39;status&#39; => &#39;1&#39;))->order(&#39;id desc&#39;)->find();
                $this->error("该订单不存在,请重新正确进入", U(&#39;Goods/sale&#39;, array(&#39;id&#39; => $goods[&#39;id&#39;])));
            }
            $this->assign(&#39;imgurl&#39;, "/wine/img/ok.png");
            $this->assign(&#39;tips&#39;, "订购成功");
            if (&#39;4&#39; == $info[&#39;pay_id&#39;]) {
                //微信支付成功
                $this->assign($info);
                $this->display();
            } else {
                $this->assign($info);
                $this->assign(&#39;tips&#39;, "订购失败");
                $this->assign(&#39;imgurl&#39;, "/wine/img/nook.png");
                $this->display();
            }
        }
    (1)
      * 类名:AlipayConfig.php
     
      * 功能:支付宝配置文件
     
      * 修改配置:
     
      // MD5密钥,安全检验码,由数字和字母组成的32位字符串,查看地址:https://b.alipay.com/order/pidAndKey.htm
            $alipay_config[&#39;key&#39;] = &#39;&#39;;//(**从支付宝中获取**)
     
      // 服务器异步通知页面路径  需http://格式的完整路径,不能加?id=123这类自定义参数,必须外网可以正常访问
            $alipay_config[&#39;notify_url&#39;] = &#39;http://&#39; . $_SERVER[&#39;SERVER_NAME&#39;] . &#39;/index.php/Wine/PayCallback/alipay_notify&#39;;
     
      // 页面跳转同步通知页面路径 需http://格式的完整路径,不能加?id=123这类自定义参数,必须外网可以正常访问
            $alipay_config[&#39;return_url&#39;] = &#39;http://&#39; . $_SERVER[&#39;SERVER_NAME&#39;] . &#39;/index.php?g=Wine&m=Orders&a=alipay_return&#39;;
     
    (2)
     * 类名:AlipayNotify.php
     
     * 功能:支付宝通知处理类
     
     * 详细:处理支付宝各接口通知返回
     
    (3)
     * 类名:Alipay.php
     
     * 功能:手机网站支付接口接入页
     
     * 详细:处理支付宝各接口通知返回
    class Alipay {
     
        public function submit($params) {
    //建立请求
            $alipaySubmit = new AlipaySubmit($alipay_config);
            $html_text = $alipaySubmit->buildRequestForm($parameter, "get", "确认");
            return &#39;<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
            <html>
            <head>
             <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
             <title>支付宝支付</title>
            </head>&#39; . $html_text . &#39;
            </body>
            </html>&#39;;
        }
    }
    (4)
     * 类名:notify_url.php
     
     * 功能:支付宝服务器异步通知页面
     
     * 详细:处理支付宝各接口通知返回


##Paste_Image.png

【2】支付业务逻辑
(1)GoodsController.class.php 下提交订单 ajax_sure()
 
public function ajax_sure() {<br>
  $data[&#39;order_code&#39;] = $order_code;
  $addr[0] = $_POST[&#39;prov&#39;];
  $addr[1] = $_POST[&#39;city&#39;];
  $addr[2] = $_POST[&#39;dist&#39;];
  $addr[3] = $_POST[&#39;area&#39;];
  $data[&#39;area&#39;] = serialize($addr);
  $data[&#39;create_time&#39;] = time();
  $data[&#39;update_time&#39;] = time();
  $data[&#39;ip&#39;] = $_SERVER[&#39;REMOTE_ADDR&#39;];
   if ($data[&#39;pay_id&#39;] == 1) {
          $data[&#39;order_status&#39;] = 11; //已付款
          $data[&#39;status&#39;] = &#39;1&#39;;
   } else {
          $data[&#39;order_status&#39;] = 10; //待付款
           $data[&#39;status&#39;] = &#39;1&#39;;
  }
   //函数调用 返回信息
  $this->Callback_url($data);
}
/**
     * 回调信息函数
     * @param type $data
     */
    public function Callback_url($data) {
        $o_model = D("Wine/Orders");
        $add_id = $o_model->add($data);
        if (!$add_id) {
            $this->error("订单提交失败,请稍后重试!");
        }<br>
        if (&#39;3&#39; == $data[&#39;pay_id&#39;]) {
            //支付宝支付
            $msg = &#39;正在为您跳转到支付宝支付页面,请等待……&#39;;
            $url = U("Pay/doalipay", array(&#39;o_id&#39; => $add_id));
        }
        $this->success("订单提交成功!" . $msg, $url);
    }
 
(2)PayController.class.php 下
    /**
     * 支付页面
     */
    public function doalipay() {
        $o_id = I("get.o_id", 0, "intval");
        $info = $this->model->findone(array("a.id" => $o_id, &#39;a.status&#39; => array(&#39;neq&#39;, &#39;-1&#39;)));
        //10代表订单待支付的状态
        if ($info[&#39;order_status&#39;] != 10) {
            $this->error("订单已支付!");
        }
        vendor("Payment.Alipay.Alipay");
        $alipay = new \Alipay();
        $param[&#39;order_sn&#39;] = $info[&#39;order_code&#39;];
//        $param[&#39;order_amount&#39;] = $info[&#39;pay_price&#39;];
        $param[&#39;order_amount&#39;] = 0.01;//测试支付时,将支付价格设为0.01元,土豪朋友忽略此提示O(∩_∩)O~
        $param[&#39;order_subject&#39;] = &#39;支付宝支付测试&#39;;
        $param[&#39;return_url&#39;] = &#39;http://&#39; . $_SERVER[&#39;SERVER_NAME&#39;] . &#39;/index.php/Wine/Orders/pay_ok/o_id/&#39;.$o_id;
        $return = $alipay->submit($param);
        echo $return;
        exit;
    }

It’s just a few simple steps. At this point, Alipay payment The process is over.

Related recommendations:


PHP implements WeChat payment function development code sharing

php develops WeChat payment enterprise payment example code

Alipay payment PHP background signature implementation method

The above is the detailed content of PHP development of WeChat payment and Alipay payment examples. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.