


php learning, 2016-5-10 2016 party members learning experience 2016 two sessions spirit learning experience 2016 two sessions spirit learning experience
1. bool function_exists (string $function_name)
Find function_name in the list of defined functions (including system-built-in functions and user-defined functions).
- Returns: If a function has been defined, return true
- For syntax structure query, return false
2. bool imagefilter ( resource
imagefilter() Apply the filter filtertype to the image, using arg1, arg2 and arg3 as needed.
This function is only available in PHP versions compiled with the GD library.
-
filtertype can be one of the following:
- IMG_FILTER_NEGATE: Invert all colors in the image.
- IMG_FILTER_GRAYSCALE: Convert the image to grayscale.
- IMG_FILTER_BRIGHTNESS: Change the brightness of the image. Use arg1 to set the brightness level.
- IMG_FILTER_CONTRAST: Change the contrast of the image. Use arg1 to set the contrast level.
- IMG_FILTER_COLORIZE: Similar to IMG_FILTER_GRAYSCALE, but the color can be specified. Use arg1, arg2 and arg3 to specify red, blue and green respectively. Each color range is 0 to 255.
- IMG_FILTER_EDGEDETECT: Use edge detection to highlight the edges of the image.
- IMG_FILTER_EMBOSS: Make the image embossed.
- IMG_FILTER_GAUSSIAN_BLUR: Blur the image using Gaussian algorithm.
- IMG_FILTER_SELECTIVE_BLUR: Blur the image.
- IMG_FILTER_MEAN_REMOVAL: Use the average removal method to achieve the contour effect.
- IMG_FILTER_SMOOTH: Make the image smoother. Use arg1 to set the smoothness level.
<code><span><?php</span><span>$im</span> = imagecreatefrompng(<span>'dave.png'</span>); <span>if</span> (<span>$im</span> && imagefilter(<span>$im</span>, IMG_FILTER_GRAYSCALE)) { <span>echo</span><span>'图片转化为灰度成功'</span>; imagepng(<span>$im</span>, <span>'dave.png'</span>); } <span>else</span> { <span>echo</span><span>'图片转化为灰度失败'</span>; } imagedestroy(<span>$im</span>); <span>?></span></code>
- If the format of the imagecreatefrompng() function does not match the actual image, the mismatch here is the original format, not the modified extension
- If there is a mismatch, the error message is: gd-jpeg : JPEG library reports unrecoverable error
- Query the information of an image getimagesize()
3.array getimagesize ( string $filename )
** This function contains an optional parameter, and official information is ignored because it is not commonly used
getimagesize() function will determine the size of any GIF, JPG, PNG, SWF, SWC, PSD, TIFF, BMP, IFF, JP2, JPX, JB2, JPC, XBM or WBMP image file and return the image dimensions and file type and a height/width text string that can be used in IMG tags in normal HTML files.
<code>print_r(getimagesize(<span>"web.jpg"</span>)); <span>/* 输出: Array ( [0] => 568 图像宽度的像素值 [1] => 2628 图像高度的像素值 [2] => 1 图像类型 [3] => width="568" height="2628" 图片长宽字符串 [bits] => 8 每种颜色的位数 [channels] => 3 对于 RGB 图像其值为 3,对于 CMYK 图像其值为 4 [mime] => image/gif 该图像的 MIME 类型 ) */</span></code>
Tags for image types: 1 = GIF, 2 = JPG, 3 = PNG, 4 = SWF, 5 = PSD, 6 = BMP, 7 = TIFF(intel byte order), 8 = TIFF(motorola byte order ), 9 = JPC, 10 = JP2, 11 = JPX, 12 = JB2, 13 = SWC, 14 = IFF, 15 = WBMP, 16 = XBM.
4.resource imagecreatefromgd2 ( string $filename ) Create a new image from a GD2 file or URL
Questions left
-
imagecreatefromgd2()
If the fopen wrapper is enabled, in this function, the URL can be used as file name. See fopen() for details on how to specify a file name. For the different functions of various wappers, please refer to the supported protocols and encapsulation protocols, pay attention to their usage and the predefined variables they can provide.
- url means that you can select a non-gd2 format image, but I tried and it didn’t work
The above introduces PHP learning, 2016-5-10, including PHP learning, 2016 content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

With the development of the Internet, the demand for dynamic web pages is increasing. As a mainstream programming language, PHP is widely used in web development. So, for beginners, how to learn PHP development? 1. Understand the basic knowledge of PHP. PHP is a scripting language that can be directly embedded in HTML code and parsed and run through a web server. Therefore, before learning PHP, you can first understand the basics of front-end technologies such as HTML, CSS, and JavaScript to better understand the operation of PHP.

PHP study notes: Web crawler and data collection Introduction: A web crawler is a tool that automatically crawls data from the Internet. It can simulate human behavior, browse web pages and collect the required data. As a popular server-side scripting language, PHP also plays an important role in the field of web crawlers and data collection. This article will explain how to write a web crawler using PHP and provide practical code examples. 1. Basic principles of web crawlers The basic principles of web crawlers are to send HTTP requests, receive and parse the H response of the server.

PHP study notes: Modular development and code reuse Introduction: In software development, modular development and code reuse are very important concepts. Modular development can decompose complex systems into manageable small modules, improving development efficiency and code maintainability; while code reuse can reduce redundant code and improve code reusability. In PHP development, we can achieve modular development and code reuse through some technical means. This article will introduce some commonly used technologies and specific code examples to help readers better understand and apply these concepts.

PHP study notes: Performance analysis and tuning Introduction: In web development, performance is a very critical factor. A high-performance website can provide a better user experience, improve user retention, and increase business revenue. In PHP development, performance optimization is a common and important issue. This article will introduce performance analysis and tuning methods in PHP, and provide specific code examples to help readers better understand and apply these techniques. 1. Performance analysis tool Xdebug extension Xdebug is a powerful P

What is the best way to learn PHP in 2023? With the rapid development of the Internet, computer programming has become a skill with extremely high employment prospects. Among many programming languages, PHP is a language that is widely used in network development. If you want to learn PHP, it's important to know the best way to learn it. PHP is an open source, server-side scripting language used to develop dynamic websites and applications. Compared to other languages, PHP has a lower learning curve and a wide range of applications, making it an ideal choice for beginners.

PHP study notes: Form processing and data validation In web development, forms are one of the important components for users to interact with the website. When users fill out forms and submit data on the website, the website needs to process and verify the submitted data to ensure the accuracy and security of the data. This article will introduce how to use PHP to process forms and perform data validation, and provide specific code examples. Form submission and data preprocessing In HTML, we need to use the <form> tag to create a form and specify the form

PHP study notes: Overview of front-end and back-end separation and API design: With the continuous development of the Internet and the increasing user needs, the development model of front-end and back-end separation has attracted more and more attention from developers. Front-end and back-end separation refers to separating the development of the front-end and the back-end, and conducting data interaction through APIs to achieve development efficiency and flexibility. This article will introduce the concept of front-end and back-end separation, and how to design an API. The concept of front-end and back-end separation: The traditional Web development model is front-end and back-end coupling, that is, the development of front-end and back-end is carried out in the same project.

PHP learning experience: How to handle errors When developing PHP applications, handling errors is a very important aspect. Good error handling can improve the stability and reliability of the code, and can also better help us debug the code and solve problems. This article will introduce some common error types and how to handle them, with corresponding code examples. Syntax Errors Syntax errors are the most common and easiest to find errors in the coding process. It usually causes the PHP parser to not understand the code correctly, resulting in
