SoFunction
Updated on 2025-04-03

PHP program code that saves binary raw data as pictures

PHP program code that saves binary raw data as pictures

Updated: October 14, 2014 16:51:16 Submission: whsnow
Get the binary original data from the post, select a generation path and the name of the image, and then write it in. The idea is very obvious. Friends who need it can collect it.

Get the binary original data from the post, select a generated path and the name of the image, and then write it in. The idea is obvious

  //Generate pictures  $imgDir = 'uploadImg/'; 
  $filename="nissangcj".$mobile.".jpg";///The image name to be generated   
  $xmlstr = $GLOBALS[HTTP_RAW_POST_DATA]; 
  if(empty($xmlstr)) { 
    $xmlstr = file_get_contents('php://input'); 
  } 
    
  $jpg = $xmlstr;//Get the binary raw data from the post  if(empty($jpg)) 
  { 
    echo 'nostream'; 
    exit(); 
  } 
   
  $file = fopen("./".$imgDir.$filename,"w");//Open the file and prepare to write  fwrite($file,$jpg);//Write  fclose($file);//closure   
  $filePath = './'.$imgDir.$filename; 
   
  //Is the picture existed  if(!file_exists($filePath)) 
  { 
    echo 'createFail'; 
    exit(); 
  } 
  • Binary
  • picture

Related Articles

  • Detailed explanation of Swoole TCP flow data boundary problem solution

    This article mainly introduces the solution to the Swoole TCP streaming data boundary problem. Students who are interested in Swoole can refer to it.
    2021-05-05
  • PHP Youdao Translate API Call Method Example

    This article mainly introduces the PHP Youdao Translation API call method, and analyzes the calling method and related skills of the Youdao Translation API interface. It is very practical. Friends who need it can refer to it.
    2014-12-12
  • Thinkphp framework implements deletion and batch deletion

    This article mainly introduces the relevant information on the deletion and batch deletion of thinkPHP framework. Friends who need it can refer to it.
    2016-06-06
  • PHP connection and method of operating PostgreSQL database

    This article mainly introduces the methods of php connecting and operating PostgreSQL databases. It analyzes the techniques of php connecting PostgreSQL databases in a more detailed manner in the form of an example. It has certain reference value. Friends who need it can refer to it.
    2014-12-12
  • php design mode State (status mode)

    Allows an object to change its behavior when its internal state changes, and the object appears to modify the class it belongs to
    2011-06-06
  • Solution to obtain web content (timeout under IPV6)

    If IPv6 is enabled, curl will prioritize IPv6 by default. If the corresponding domain name does not have IPv6, it will wait for IPv6 dns resolution to fail timeout before searching for IPv4 according to the previous normal process.
    2013-07-07
  • A brief analysis of the interpreter mode of PHP design mode

    Interpreter mode, what is it? It means that given a language, define a representation of its grammar and define an interpreter that uses this representation to interpret sentences in the language. This is the most realistic statement. We can also understand that it is used to analyze a key element of an entity and provides its own explanation or corresponding action for each element.
    2023-04-04
  • Detailed explanation of how to filter links and filter SQL statements in WordPress

    This article mainly introduces a detailed explanation of how to filter links and filter SQL statements in WordPress, which is mainly used to prevent unsafe protocols and SQL injection attacks. Friends who need it can refer to it
    2015-12-12
  • Simple encapsulation of some functions of mysql module in php

    A simple encapsulation of some functions of the mysql module in PHP. Many cms encapsulate some mysql operation code classes, you can refer to it.
    2011-09-09
  • PDO database operation tool class and usage examples encapsulated by php

    This article mainly introduces the PDO database operation tools and usage of PDO database encapsulated by PPP. It analyzes the PDO database connection, addition, deletion, modification, error handling, closing connection and other operations and related usage techniques encapsulated by PDO database, combined with examples. Friends who need it can refer to it.
    2019-05-05

Latest Comments