You are here

function PclZip::privDisableMagicQuotes in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php \PclZip::privDisableMagicQuotes()
6 calls to PclZip::privDisableMagicQuotes()
PclZip::delete in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php
PclZip::privAdd in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php
PclZip::privCreate in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php
PclZip::privExtractByRule in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php
PclZip::privList in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php, line 5327

Class

PclZip

Code

function privDisableMagicQuotes() {
  $v_result = 1;

  // ----- Look if function exists
  if (!function_exists("get_magic_quotes_runtime") || !function_exists("set_magic_quotes_runtime")) {
    return $v_result;
  }

  // ----- Look if already done
  if ($this->magic_quotes_status != -1) {
    return $v_result;
  }

  // ----- Get and memorize the magic_quote value
  $this->magic_quotes_status = @get_magic_quotes_runtime();

  // ----- Disable magic_quotes
  if ($this->magic_quotes_status == 1) {
    @set_magic_quotes_runtime(0);
  }

  // ----- Return
  return $v_result;
}