{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

PHP 5.5从零开始学(视频教学版)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

PHP 5.5从零开始学(视频教学版)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《PHP 5.5从零开始学(视频教学版)》循序渐进地介绍了PHP 5.5开发动态网站的主要知识和技能,提供了大量的PHP应用实例供读者实践。每一章节都清晰讲述了代码作用及其编写思路,使读者能在最短时间内迅速掌握PHP的应用开发技能。
全书共22章,分别介绍了PHP 5.5的基本概念、PHP服务器环境配置、PHP的基本语法、PHP的语言结构、字符串和正则表达式、数组、时间和日期、面向对象、错误处理和异常处理、PHP与Web页面交互、文件与目录操作、图形图像处理、Cookie与会话管理、MySQL数据库基础、PHP操作MySQL数据库、PDO数据库抽象类库、PHP与JavaScript综合应用、PHP与XML技术的综合应用、PHP与Ajax的综合应用、Smarty模版、Zend framework框架等,最后通过一个PHP+MySQL数据库的综合案例,使读者进一步巩固所学的知识,提高综合实战能力。
《PHP 5.5从零开始学(视频教学版)》适合PHP的初学者,以及广大网站开发人员,也可供高等院校和培训学校相关专业的师生参考。

Catalogue

第1章 初识PHP
1.1 PHP的来龙去脉
1.1.1 PHP的概念
1.1.2 PHP的发展历程
1.1.3 PHP语言的优势
1.2 PHP能干什么
1.3 PHP 5.5的新特点
1.4 PHP常用开发工具
1.4.1 PHP代码开发工具
1.4.2 网页设计工具
1.4.3 文本编辑工具
1.5 疑难解惑
第2章 PHP 5.5服务器环境配置
2.1 PHP服务器概述
2.2 安装PHP 5.5前的准备工作
2.2.1 软硬件环境
2.2.2 获取PHP 5.5安装资源包
2.3 PHP 5.5+IIS服务器安装配置
2.3.1 IIS简介及其安装
2.3.2 PHP的安装
2.3.3 虚拟目录的设置
2.4 PHP 5.5+Apache服务器的环境搭建
2.4.1 Apache简介
2.4.2 关闭原有的网站服务器
2.4.3 安装Apache
2.4.4 将PHP与Apache建立关联
2.5 实战演练--我的第一个PHP程序
2.6 疑难解惑
第3章 PHP 5.5的基本语法
3.1 PHP标识符
3.1.1 短风格
3.1.2 script风格
3.1.3 ASP风格
3.2 编码规范
3.2.1 什么是编码规范
3.2.2 PHP中的编码规范
3.3 常量
3.3.1 声明和使用常量
3.3.2 内置常量
3.4 变量
3.4.1 PHP中的变量声明
3.4.2 可变变量与变量的引用
3.4.3 变量作用域(variable scope)
3.5 数据类型
3.5.1 什么是类型
3.5.2 整型(integer)
3.5.3 浮点型(float或double)
3.5.4 布尔型(boolean)
3.5.5 字符串型(string)
3.5.6 数组型(array)
3.5.7 对象型(object)
3.5.8 NULL型
3.5.9 资源类型(resource)
3.5.10 数据类型之间的相互转换
3.6 运算符
3.6.1 算术运算符
3.6.2 字符串运算符
3.6.3 赋值运算符
3.6.4 比较运算符
3.6.5 逻辑运算符
3.6.6 按位运算符
3.6.7 否定控制运算符
3.6.8 错误控制运算符
3.6.9 三元运算符
3.6.10 运算符的优先级和结合规则
3.7 表达式
3.8 实战演练--创建多维数组
3.9 疑难解惑

第4章 PHP语言结构
4.1 函数
4.1.1 PHP函数
4.1.2 自定义和调用函数
4.1.3 向函数传递参数值
4.1.4 向函数传递参数引用
4.1.5 从函数中返回值
4.1.6 对函数的引用
4.1.7 对函数取消引用
4.2 流程控制概述
4.3 条件控制结构
4.3.1 单一条件分支结构(if语句)
4.3.2 双向条件分支结构(if…else语句)
4.3.3 多向条件分支结构(elseif语句)
4.3.4 多向条件分支结构(switch语句)
4.4 循环控制结构
4.4.1 while循环语句
4.4.2 do…while循环语句
4.4.3 for循环语句
4.4.4 foreach循环语句
4.4.5 流程控制的另一种书写格式
4.4.6 使用break/continue语句跳出循环
4.5 实战演练1--条件分支结构综合应用
4.6 实战演练2--循环控制结构综合应用
4.7 疑难解惑
第5章 字符串和正则表达式
5.1 字符串的单引号和双引号
5.2 字符串的连接符
5.3 字符串的基本操作
5.3.1 手动和自动转义字符串中的字符
5.3.2 计算字符串的长度
5.3.3 字符串单词统计
5.3.4 清理字符串中的空格
5.3.5 字符串的切分与组合
5.3.6 字符串子串的截取
5.3.7 字符串子串替换
5.3.8 字符串查找
5.4 什么是正则表达式
5.5 正则表达式语法规则
5.6 实战演练--创建酒店系统在线订房表
5.7 疑难解惑
第6章 PHP数组
6.1 什么是数组
6.2 数组的类型
6.2.1 数字索引数组
6.2.2 关联索引数组
6.3 数组构造
6.3.1 一维数组
6.3.2 多维数组
6.4 遍历数组
6.4.1 遍历一维数字索引数组
6.4.2 遍历一维联合索引数组
6.4.3 遍历多维数组
6.5 数组排序
6.5.1 一维数组排序
6.5.2 多维数组排序
6.6 字符串与数组的转换
6.7 向数组中添加和删除元素
6.7.1 向数组中添加元素
6.7.2 从数组中删除元素
6.8 查询数组中指定元素
6.9 统计数组元素个数
6.10 删除数组中的重复元素
6.11 调换数组中的键值和元素值
6.12 实战演练--数组的序列化
6.13 疑难解惑
第7章 时间和日期
7.1 系统时区设置
7.1.1 时区划分
7.1.2 时区设置
7.2 PHP日期和时间函数
7.2.1 关于UNIX时间戳
7.2.2 获取当前时间戳
7.2.3 获取当前日期和时间
7.2.4 使用时间戳获取日期信息
7.2.5 检验日期的有效性
7.2.6 输出格式化时间戳的日期和时间
7.2.7 显示本地化的日期和时间
7.2.8 将日期和时间解析为UNIX时间戳
7.2.9 日期和时间在PHP和MySQL数据格式之间的转换
7.3 实战演练1--比较两个时间的大小
7.4 实战演练2--实现倒计时功能
7.5 疑难解惑
第8章 面向对象编程
8.1 类和对象的介绍
8.2 PHP中类的操作
8.2.1 类的声明
8.2.2 成员属性
8.2.3 成员方法
8.2.4 类的实例化
8.2.5 访问类中的成员属性和方法
8.3 构造方法和析构方法
8.4 访问方法
8.5 类的继承
8.6 抽象类和接口
8.6.1 抽象类
8.6.2 接口
8.7 面向对象的多态性
8.7.1 通过继承实现多态
8.7.2 通过接口实现多态
8.8 疑难解惑
第9章 错误处理和异常处理
9.1 常见的错误和异常
9.2 错误处理
9.2.1 php.ini中的错误处理机制
9.2.2 应用DIE语句调试
9.2.3 自定义错误和错误触发器
9.2.4 错误记录
9.3 异常处理
9.3.1 异常的基本处理方法
9.3.2 自定义的异常处理器
9.3.3 处理多个异常
9.3.4 设置顶层异常处理器
9.4 实战演练--处理异常或错误
9.5 疑难解惑
第10章 PHP与Web页面的交互
10.1 使用动态内容
10.2 表单与PHP
10.3 表单设计
10.3.1 表单基本结构
10.3.2 文本框
10.3.3 选项框
10.3.4 单选按钮
10.3.5 下拉列表
10.3.6 重置按钮
10.3.7 提交按钮
10.4 传递数据的两种方法
10.4.1 用POST方式传递数据
10.4.2 用GET方式传递数据
10.5 PHP获取表单传递数据的方法
10.6 PHP对URL传递的参数进行编码
10.7 实战演练--PHP与Web表单的综合应用
10.8 疑难解惑
第11章 PHP文件与目录操作
11.1 文件操作
11.1.1 文件数据的写入
11.1.2 文件数据的读取
11.2 目录操作
11.3 文件的上传
11.4 实战演练--编写文本类型的访客计算器
11.5 疑难解惑
第12章 图形图像处理
12.1 在PHP中加载GD库
12.2 图形图像的典型应用案例
12.2.1 创建一个简单的图像
12.2.2 使用GD2函数在照片上添加文字
12.2.3 使用TrueType字体处理中文生成图片
12.3 Jpgraph库的使用
12.3.1 Jpgraph的安装
12.3.2 Jpgraph的配置
12.3.3 制作柱形图与折线图统计图
12.3.4 制作圆形统计图
12.4 实战演练--制作3D饼形统计图
12.5 疑难解惑
第13章 Cookie和会话管理
13.1 Cookie基本操作
13.1.1 什么是Cookie
13.1.2 创建Cookie
13.1.3 读取Cookie
13.1.4 删除Cookie
13.2 认识Session
13.2.1 什么是Session
13.2.2 Session的基本功能
13.2.3 Cookie与Session
13.2.4 在Cookie或URL中存储Session ID
13.3 会话管理
13.3.1 创建会话
13.3.2 注册会话变量
13.3.3 使用会话变量
13.3.4 注销和销毁会话变量
13.4 实战演练--会话管理的综合应用
13.5 疑难解惑
第14章 MySQL数据库基础
14.1 什么是MySQL
14.1.1 客户机-服务器软件
14.1.2 MySQL版本
14.1.3 MySQL的优势
14.2 启动服务并登录MySQL数据库
14.2.1 启动MySQL服务
14.2.2 登录MySQL数据库
14.2.3 配置Path变量
14.3 MySQL数据库的基本操作
14.3.1 创建数据库
14.3.2 查看数据库
14.3.3 删除数据库
14.3.4 选择数据库
14.4 MySQL数据表的基本操作
14.4.1 创建数据表
14.4.2 查看数据表结构
14.4.3 修改数据表结构
14.4.4 删除数据表
14.5 MySQL语句的操作
14.5.1 插入记录
14.5.2 查询记录
14.5.3 修改记录
14.5.4 删除记录
14.6 MySQL数据库的备份与还原
14.6.1 数据备份
14.6.2 数据还原
14.7 疑难解惑
第15章 PHP操作MySQL数据库
15.1 PHP访问MySQL数据库的一般步骤
15.2 连接数据库前的准备工作
15.3 PHP操作MySQL数据库的函数
15.3.1 通过mysqli类库访问MySQL数据库
15.3.2 使用mysqli_connecto函数连接MySQL服务器
15.3.3 使用mysqli_select_dbo函数选择数据库文件
15.3.4 使用mysqli_queryo函数执行SQL语句
15.3.5 使用mysqli_fetch_assoco函数从数组结果集中获取信息
15.3.6 使用mysqli_fetch_objecto函数从结果中获取一行作为对象
15.3.7 使用mysqli_num_rowso函数获取查询结果集中的记录数
15.3.8 使用mysqli_free_resulto函数释放资源
15.3.9 使用mysqli_closeo函数关闭连接
15.4 实战演练1--使用insert语句动态添加用户信息
15.5 实战演练2--使用select语句查询数据信息
15.6 疑难解惑
第16章 PDO数据库抽象类库
16.1 PDO概述
16.2 PDO的安装
16.3 使用PDO操作MySQL
16.3.1 连接MySQL数据库的方法
16.3.2 使用PDO时的try catch错误处理结构
16.3.3 使用PDO执行SQL的选择语句
16.3.4 使用PDO获取返回数据的类方法
16.3.5 使用PDO执行SQL的添加、修改语句
16.3.6 使用PDO执行SQL的删除语句
16.4 实战演练--PDO的prepare表述
16.5 疑难解惑
第17章 JavaScript编程基础
17.1 认识JavaScript
17.1.1 什么是JavaScript
17.1.2 JavaScript的特点
17.2 JavaScript在HTML中的使用
17.2.1 在HTML网页头中嵌入JavaScript代码
17.2.2 在HTML网页中嵌入JavaScript代码
17.2.3 在HTML网页的元素事件中嵌入JavaScript代码
17.2.4 在HTML中调用已经存在的JavaScript文件
17.2.5 通过JavaScript伪URL引入JavaScript脚本代码
17.3 JavaScript的基本语法
17.3.1 执行顺序
17.3.2 区分大小写
17.3.3 分号与空格
17.3.4 对代码行进行折行
17.3.5 注释
17.4 JavaScript的数据结构
17.4.1 标识符
17.4.2 关键字
17.4.3 保留字
17.4.4 常量
17.4.5 变量
17.5 代码中的数据类型
17.5.1 typeof 运算符
17.5.2 Undefined类型
17.5.3 Null类型
17.5.4 Boolean类型
17.5.5 Number类型
17.5.6 String类型
17.6 条件判断语句
17.6.1 if语句
17.6.2 if…else语句
17.6.3 switch语句
17.7 循环控制语句
17.7.1 while语句
17.7.2 do…while语句
17.7.3 for循环
17.8 在PHP中调用JavaScript代码
17.8.1 验证表单元素的值是否为空
17.8.2 实现即时验证效果
17.9 实战演练--制作树型菜单
17.10 疑难解惑
第18章 PHP与XML技术
18.1 XML概念
18.2 XML语法基础
18.2.1 XML文档的组成和声明
18.2.2 XML元素介绍
18.2.3 (处理指令)实体引用
18.2.4 XML命名空间
18.2.5 XML DTD
18.2.6 使用CDATA标记
18.3 将XML文档转换为HTML加以输出
18.4 在PHP中创建XML文档
18.5 使用SimpleXML扩展
18.5.1 创建SimpleXMLElement对象
18.5.2 访问特定节点元素和属性
18.5.3 添加XML元素和属性
18.6 实战演练--动态创建XML文档
18.7 疑难解惑
第19章 PHP与Ajax的综合应用
19.1 Ajax概述
19.1.1 什么是Ajax
19.1.2 Ajax的关键元素
19.1.3 CSS与Ajax
19.2 Ajax快速入门
19.2.1 全面剖析XMLHttpRequest对象
19.2.2 发出Ajax请求
19.2.3 处理服务器响应
19.3 在PHP中应用Ajax技术
19.4 疑难解惑
第20章 Smarty模板
20.1 MVC概述
20.2 什么是模板引擎
20.3 Smarty概述
20.3.1 什么是Smarty
20.3.2 Smarty与MVC
20.4 Smarty的安装和配置
20.4.1 Smarty的下载和安装
20.4.2 第一个Smarty程序
20.5 Smarty模板设计
20.5.1 Smarty模板文件
20.5.2 Smarty标识(tags)
20.5.3 Smarty变量
20.5.4 Smarty数组
20.5.5 Smarty中的流程控制语句
20.6 疑难解惑
第21章 Zend Framework框架
21.1 什么是Zend Framework框架
21.2 Zend Framework的目录结构
21.3 Zend Framework的安装与测试
21.3.1 Zend Framework的安装
21.3.2 创建一个新的Zend Framework应用
21.4 PHP与Zend Framework的基本操作
21.4.1 在Zend Framework应用中创建控制层文件
21.4.2 在Zend Framework的控制层文件中添加一个action
21.4.3 在Zend Framework中创建布局(layout)
21.4.4 在Zend Framework中的数据库操作
21.4.5 在Zend Framework中创建表单
21.5 专家解惑
第22章 PHP+MySQL开发论坛实战
22.1 网站的需求分析
22.1.1 需求分析
22.1.2 网站功能模块分析
22.2 数据库分析
22.2.1 分析数据库
22.2.2 创建数据表
22.3 论坛的代码实现
22.3.1 数据库连接相关文件
22.3.2 论坛主页面
22.3.3 新用户注册页面
22.3.4 论坛帖子的相关页面
22.3.5 后台管理系统的相关页面

Introduction

PHP是目前世界上最为流行的Web开发语言之一。目前学习和关注PHP的人越来越多,而很多PHP的初学者都苦于找不到一本通俗易懂、容易入门和示例实用的参考书。为此,作者组织有丰富经验的开发人员编写了这本PHP动态网站开发教材。
本书几乎涉及PHP网站开发的所有重要知识,适合所有的PHP网站开发初学者快速入门,同时也适合想全面了解PHP+MySQL网站开发人员阅读。通过全书的学习,读者可以完整地掌握PHP网站开发的技术要点,并具备动态网站开发的基本技术。
本书内容丰富全面,图文并茂,步骤清晰,通俗易懂,使读者能理解PHP网站开发的技术构成,并能解决实际生活或工作中的问题,真正做到知其然,更知其所以然。通过重点章节,条理清晰地介绍了读者希望了解的知识,对PHP网站开发有兴趣的读者,可以快速上手设计和制作动态网站。
本书注重实用,可操作性强,详细讲解了书中每一个知识点和每一个PHP网站开发的方法和技巧,真正体现本书“完全”的含义,是一本物超所值的参考用书。
本书特色
内容全面:知识点由浅入深,涵盖了所有PHP知识点,可使读者由浅入深地掌握PHP+MySQL动态网站开发技术。
图文并茂:注重操作,图文并茂,在介绍案例的过程中,每一个操作均有对应的插图。这种图文结合的方式使读者在学习过程中能够直观、清晰地看到操作的过程和效果,便于更快地理解和掌握。
示例丰富:把知识点融汇于系统的示例当中,并且在示例中进行讲解和拓展,从而达到“知其然,并知其所以然”的效果。
技巧提示:本书对读者在学习过程中可能会遇到的疑难问题以“提示”和“技巧”的形式进行了说明,以免读者在学习的过程中走弯路。
读者对象
本书是一本完整介绍PHP网页布局技术的教程,内容丰富,条理清晰,实用性强。
对PHP语言初学者,可以快速掌握PHP语言开发的知识和技巧。
对动态网站制作初学者,可以快速学会制作内容丰富的动态网站。
对PHP+MySQL架构Web系统开发人员,可以作为编程开发参考书籍。

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book