Home  >  Article  >  Backend Development  >  Determination and dynamic definition of php variables

Determination and dynamic definition of php variables

墨辰丷
墨辰丷Original
2018-06-09 17:21:281201browse

This article mainly introduces the determination and dynamic definition of PHP variables. Interested friends can refer to it. I hope it will be helpful to everyone.

The example in this article describes the use of PHP dynamic binding variables. The details are as follows:

private function bindVars($stmt,$params) {
  if ($params != null) {
    $types = ''; //initial sting with types
    foreach($params as $param) {
 //for each element, determine type and add
      if(is_int($param)) {
        $types .= 'i'; //integer
      } elseif (is_float($param)) {
        $types .= 'd'; //double
      } elseif (is_string($param)) {
        $types .= 's'; //string
      } else {
        $types .= 'b';
 //blob and unknown
      }
    }
    $bind_names[] = $types;
 //first param needed is the type string
 // eg: 'issss'
    for ($i=0; $i

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

php implements the function of sending and receiving text messages

php targets characters String traversal and interception operation skills

PHP file operations and algorithms

The above is the detailed content of Determination and dynamic definition of php variables. 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