Tagged Questions
1
vote
1answer
37 views
PHP class private variable set from different (included) file
I have a class that uses private variables those variables are "configuration variables", and I need them to "change" sometimes (in my example if I add new language I need to have in config also new ...
-10
votes
0answers
80 views
Advice to develop a chatting website using PHP [closed]
I am developing a chat application in PHP. I am fetching data from MySQL database. in my chat group chat is available, and am trying to develop private chat. Here some example website for my ...
2
votes
1answer
58 views
OpenSSL won't create private keys?
Okay, well, this is my first time working with encryption on a project. I am using my hosting provider for SSL, but I also want to encrypt portions of the database that are sensitive. For this, I was ...
-4
votes
1answer
48 views
How to access/edit/delete variables in a class [closed]
What is the best way to accomplish the following:
class foobar {
public $a = 'one';
private $b = 'two';
}
$obj = new foobar();
( here )
From ( here ) how is the following accomplished?
...
1
vote
3answers
79 views
Private folder in PHP?
My website deals with images. Whenever a user uploads an image it will be stored in "imagefiles" folder, but the problem is users can see all the images of that folder on web through http. To prevent ...
0
votes
1answer
82 views
Initially declare variables in PHP classes private or protected [closed]
I see people using mixed private and protected declared variables in their Zend-Framework 2 classes. Is there a difference in this initial declaration? I know the basic difference between private and ...
0
votes
2answers
1k views
Using the YouTube API v3 to list all private videos
Currently I'm building a site that will use a small number of user uploaded videos. These videos are uploaded to the server, then moved on to YouTube via the API v3. The private tag is set, and all ...
0
votes
3answers
876 views
convert .key to .pem
I need to encrypt with private key and I'm attempting to do so with the following code:
$content = file_get_contents("file.key");
$plaintext = "14d9df79-8c4c-4380-8444-d31e1fd3f78a";
...
0
votes
2answers
78 views
Providing downlaod link to file in non-public section of server
I have a number of files stored in a folder outside of the publicly accessible portion of my website.
For example, the file 'abcd.jpg' is stored (in terms of the server) in '/home/private_files/' ...
3
votes
2answers
494 views
Check if an IP address is private
I like to check if an IP address is in a private network. It doesn't work.
My code:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
function _isPrivate($ip)
{
$i = explode('.', $ip);
if ($i[0] ...
0
votes
2answers
108 views
PHP - Visibility of __construct
If i have :
abstract class AbstractSingleton
{
protected static $instance;
public static function & getInstance()
{
if(null === static::$instance) static::$instance = new ...
1
vote
0answers
78 views
Using Youtube API to move videos to another media host
Can I make a PHP script, using Youtube API or any other legal way, to directly copy mp4 files from my own youtube channel to Amazon S3 or other media host?
I need this because my client wants me to ...
2
votes
3answers
153 views
Not allowing people to post private youtube video links
I have a website, and on it you can post a YouTube video link, and when you do, it gets the ID from it (the 11 characters) and puts it in the database. Then, you can view the video on a page and it ...
1
vote
7answers
263 views
PHP: can an empty `index.html` 'hide' files in that directory (if the files names are not known)?
Could access to files like df9dfglh_56_ghf.mp3 in /www/pub/ prevented with an empty index.html file? (but giving access via index.php with login to a database that then links to that file name)?
...
0
votes
3answers
91 views
declaring variables in classes using PHP
Fairly new to classes in PHP, so bear with me.
class processRoutes
{
//Next line works
private $doc = "works as as string";
//Next line does not work, "Parse error: ...
0
votes
3answers
195 views
How to Set a MYSQL Variable Value to 1 when text is clicked in php?
First off I know very little about php and am still learning so please go easy on me with your answers. basically i'm working on a project that functions like a social network site, users are able to ...
0
votes
1answer
162 views
Ajax call to private folder / php file from main site domain (public_html)
I am in the process of migrating my site to a server from its localhost location. In my server root, I want to have a public_html folder that maps to the main domain, and a private folder that ...
0
votes
3answers
97 views
How do I retrieve an item from a PHP private Object Array?
I've searched everywhere, IPB forums, google, everywhere.
I couldn't find any documentation from IPB/IP.Nexus forums because they dont have any, it's encrypted with Zend.
What I was trying to do was ...
0
votes
1answer
556 views
Retrieving raw private key from openssl_pkey_get_private()
I've been spending quite some time trying to figure out how exactly to retrieve the raw private key data from openssl_pkey_get_private() using a passphrase. I feel like there's a simple thing I am ...
2
votes
2answers
111 views
Simulating friend classes in PHP
I have a class Foo with a number of public and private methods. One of those methods is getting rather large, and I would like to fork it off into a separate class specifically for that purpose. ...
-2
votes
2answers
169 views
The difference between private and protected
In PHP there does not seem to be a big disparity between private and protected methods.
I asked why I should use protected in PHP Chatroom and got this answer:
unless you have good reason not to ...
0
votes
1answer
798 views
PHP Private variable access from child
so I'm trying to work out an issue I'm having in designing PHP classes. I've created a base class, and assigned private variables. I have child classes extending this base class, which make reference ...
0
votes
3answers
1k views
Calling a private static method from __callStatic
I want to use __callStatic as a preProcessor for calling static methods. My idea is to make the methods private so every static call is forwarded to __callStatic. Then I could use this to do some ...
0
votes
5answers
108 views
PHP5 member visibility
Could someone explain me, why is it possible to do the following in PHP, but, for example, not in C# or Java:
Class A {
protected $a = 'Howdy!';
}
Class B extends A {
public function howdy() ...
0
votes
2answers
216 views
PHP API CReate Private Event
Hi Im trying to create private events from an App
I can create the invite, invite friends etc fine but i cant get the event to be created as private (invite only)
The params i use to create the ...
1
vote
3answers
116 views
How to give somebody a link to something that nobody else can have? [closed]
Usually when you send a link to somebody to someones social profile it will ask you to create an account to see it. But say i didn't want to do that, rather i wanted to give them a link that could ...
1
vote
4answers
1k views
How come the PHP private class var is not private?
I was programming, and came across this problem:
In the code sample below, a public function sets a private varriable. Now one would expect the content of that private varriable is private, thought ...
0
votes
3answers
60 views
Why you can change the value of private attributes (which are objects)?
Can somebody tell me why this is possible? An private attribute should only be changable from the class itself. s::$c is readable (getC()) but why I can write to it?
<?php
class s{
private ...
1
vote
3answers
163 views
private var does not work as expected in a class php
In the example below I receive an error stating the value of $foo->_test is not accessible since it is private. What am I doing wrong?
<?php
$foo = new Bar;
$foo->test();
print_r( ...
1
vote
0answers
354 views
PHP SDK Facebook, read private groups
I would like to read the group names where the user is member.
$groups = $facebook->api('/me/groups');
Doesn't work for me, it just returns me an empty array. Other things like "/me/albums" ...
1
vote
8answers
311 views
Accessing Private Function From Outside Class
I'm learning OO stuff, and came across this:
class n{
private function f($v){
return $v*7;
}
function c(){
return $this->f(5);
}
}
$o = new n;
echo $o->c(); ...
0
votes
4answers
509 views
Change class, private or public string
There is a php class in which I like to change the variable, but I can't make it happen.
The Class:
class ShopCart
{
private $maincurrency = 'USD';
private function set_Currency() {
...
5
votes
4answers
3k views
PHP - Private class variables giving error: undefined variable
I am getting the error "Undefined variable: interval in C:\wamp\www\DGC\classes\DateFilter.php"
Here is my code for the DateFilter class:
class DateFilter extends Filter
{
//@param daysOld: how ...
0
votes
2answers
180 views
how to access a private variable in php?
I tried all the tricks available in the net, but dont know why, i am not able to access the variable.. heres the snippet of class containing private variable:
class PANASONIC_PRICESHEET {
public ...
0
votes
2answers
45 views
var's I keep declaring the same things over again
Not sure if there is away to do what I want, I basically need to store the following information in a global var, and if they are being requested, then be able to fetch them from any public function ...
0
votes
2answers
227 views
Private API for native application
Is it possible to make a private API to communicate from a native application to a web application ?
Because as the application is installed in the client side, the user can the HTTP request and so he ...
4
votes
5answers
638 views
The advantage / disadvantage of private variables?
I'm used to make pretty much all of my class variables private and create "wrapper" functions that get / set them:
class Something{
private $var;
function getVar(){
$return $this->var;
...
4
votes
3answers
3k views
Which is better in PHP, Static Variable or Private Variable?
I noticed two ways in PHP to do the same thing. Can you tell me which way is a better programming practice?
In the first example, I use a private variable on the class. On the second example, I use a ...
0
votes
2answers
158 views
How can I protect a class property from extending classes in PHP?
Is it possible to do something like this:
class foo {
private $private = 'A';
}
class bar extends foo {
echo $this->private;
}
bar returns null...
I'd really like it if the variable ...
1
vote
3answers
348 views
calling a private array from another private array in php
I don't understand why doesn't this code work:
<?php
class Test {
private $BIG = array(
'a' => 'A',
'b' => 'B',
'c' => 'C'
);
private $arr2 = array(
...
0
votes
3answers
1k views
PHP: How to call private values of parent construct in child construct?
I want to be able to set a private attribute's value in the parent constructor, and call the value in a child's constructor or method.
For example:
<?php
abstract class MainClass
{
private ...
1
vote
1answer
486 views
Making a private call in a extended class?
I have a parent class containing a function funcB() which I like to override with a better function by making just a few changes in this function. This function in the parent class makes a call to ...
0
votes
2answers
156 views
PHP: change attribute from inherited class
maybe some of you use jpgraph to generate some charts. I want to change the private attribute ($errwidth) from an jpgraph-class ( ErrorPlot ). In most cases jpgraph provides an function to set all ...
1
vote
2answers
465 views
php security protected vs. private
I am trying to build an application in php and I have an encrypt/decrypt method that I am deploying, to enhance the security I declared these two methods as protected and I plan to have any class that ...
0
votes
2answers
633 views
htaccess directory issues
I'm trying to keep a folder private, but allow an html file to access what's contained in that file.
For example, a .htaccess in the private folder contains
order deny,allow
deny from all
allow from ...
0
votes
1answer
432 views
Keeping some files private
I was trying to create a directory of private files that could only be accessed when a user logs in. To do this, I used a folder outside the web directory, and then php to access it, if allowed.
...
-2
votes
2answers
86 views
Private login for my site
I need to come up with a way to allow only myself (and possibly a few others) to authenticate with my site. However, ideally I'd like for this not to be a public function. I could obscure a login ...
109
votes
8answers
35k views
PHP: Public, Private, Protected
When and why should I use and what's the difference between, public, private and protected functions/variables inside a class?
Examples:
// Public
public $variable;
public function doSomething(){
...
2
votes
5answers
909 views
Is visibility in PHP classes important, and why?
As you know, PHP class has private, public and protected keywords. I just started to write classes and I wonder what are the advantages of class visibility in PHP5.
And of course also ...
0
votes
3answers
151 views
How to know if targeted website contains private content?
I have developed a tool that creates a thumbnail of a webpage according to how the user visualizes it in his browser.
I would like to generate the thumbnail only once if all users see the same ...

