Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
PHP 5 Recipes A Problem-Solution Approach PHẦN 7
Đang chuẩn bị liên kết để tải về tài liệu:
PHP 5 Recipes A Problem-Solution Approach PHẦN 7
Gia Bình
51
68
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Trong ví dụ này, nhiều PHP 5 tính năng đang được sử dụng để xây dựng một lớp RegExp mạnh mẽ mà bạn có thể sử dụng trong mã của bạn. Vào cuối của ví dụ, mã chứng minh làm thế nào để sử dụng lớp mới. Các nhà xây dựng __construct là được sử dụng với các biểu hiện thường xuyên như là một tham số để constructor. | 386 9-20 CREATING YOUR OWN REGEXP CLASS - str The string in which to make the replacement function replace replaceStr str result preg_replace this- pattern replaceStr str return result re new RegExp Hello echo re . n echo re- pattern . n if re- isMatch Goodbye world echo Found match n else echo Didn t find match n if re- isMatch Hello world echo Found match n else echo Didn t find match n res re- replace Goodbye Goodbye world echo res . n How It Works In this example many new PHP 5 features are being used to build a powerful RegExp class that you can use in your code. At the end of the example code demonstrates how to use the new class. Theconstruct constructor is used with the regular expression as an argument to the constructor. When a new RegExp object is created the pattern is kept inside the object to use in its future matches and replacements. The class declaration and constructor are as follows class RegExp public pattern Constructor Creates a new instance of the RegExp object with the pattern given. function construct pattern this- pattern pattern 9-20 CREATING YOUR OWN REGEXP CLASS 387 To create an instance of the RegExp class just create it using new as shown here and in the test code at the bottom of the example re new RegExp Hello In the previous example Hello will be stored in the pattern variable in the class. The_toString method is declared in this class to print the regular expression in the pattern variable so using echo to print the object will print the pattern only echo re This is the result Hello Now that the object has been created and is storing a regular expression internally the isMatch function shown next will make it easy to see if there is a match found inside a string function isMatch str result preg_match this- pattern str return result As you can see this class uses the PCRE function preg_match to look at the string to see if there is a match with this- pattern used as the regular expression. This is why the example regular .
TÀI LIỆU LIÊN QUAN
PHP 5 Recipes A Problem-Solution Approach 2005 phần 5
PHP 5 Recipes A Problem-Solution Approach PHẦN 5
PHP 5 Recipes A Problem-Solution Approach
PHP 5 Recipes A Problem-Solution Approach 2005 phần 1
PHP 5 Recipes A Problem-Solution Approach 2005 phần 2
PHP 5 Recipes A Problem-Solution Approach 2005 phần 3
PHP 5 Recipes A Problem-Solution Approach 2005 phần 4
PHP 5 Recipes A Problem-Solution Approach 2005 phần 6
PHP 5 Recipes A Problem-Solution Approach 2005 phần 7
PHP 5 Recipes A Problem-Solution Approach 2005 phần 8
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.