|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2011-12-02 12:03 UTC] kapsonfire at gmx dot de
Description:
------------
Using an private array in a Class as Data Layer become readale outside of class with print_r
Test script:
---------------
<?php
//test.php
require "classes/Item.class.php";
require "classes/User.class.php";
session_start();
//DB SHIT
$item = new Item(1);
echo "<pre>ITEMOBJECT:<br>".(print_r($item,true))."</pre>";
?>
<?php
// classes/Item.class.php
class Item {
private $DATA=array();
private $OWNER=null;
public function __construct($itemID) {
$item = mysql_fetch_assoc(mysql_query("SELECT * FROM w1_items WHERE itemid = $itemID"));
$keys = array_keys($item);
foreach($keys as $key)
{
$this->DATA[$key] = $item[$key];
}
}
}
Expected result:
----------------
ITEMOBJECT:
Item Object
(
[DATA:Item:private] => Array
(
[itemid] => 1
[uid] => 2
)
[OWNER:Item:private] =>
)
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 18:00:01 2025 UTC |
Release\php.exe -n -r "class f {private $f=1;} $a = new f; $a->f;" Fatal error: Cannot access private property f::$f in Command line code on line 1 print_r/var_dump are only a debugging/informative functions.No, it is not readable. Using: class Item { private $DATA=array(); private $OWNER=null; public function __construct($itemID) { } } $a = new Item(1); $a->DATA; PHP Fatal error: Cannot access private property Item::$DATA in /home/pierre/60431.php on line 14