Tagged Questions
21
votes
6answers
6k views
PHP Constants Containing Arrays?
This failed:
define('DEFAULT_ROLES', array('guy', 'development team'));
Apparently, constants can't hold arrays. What is the best way to get around this?
define('DEFAULT_ROLES', 'guy|development ...
20
votes
2answers
695 views
Pros and Cons of Interface constants
PHP interfaces allow the definition of constants in an interface, e.g.
interface FooBar
{
const FOO = 1;
const BAR = 2;
}
echo FooBar::FOO; // 1
Any implementing class will automatically ...
13
votes
5answers
5k views
Can I get CONST's defined on a PHP class?
I have several CONST's defined on some classes, and want to get a list of them. For example:
class Profile {
const LABEL_FIRST_NAME = "First Name";
const LABEL_LAST_NAME = "Last Name";
...
12
votes
6answers
3k views
Include constant in string without concatenating
Is there a way in PHP to include a constant in a string without concatenating?
10
votes
3answers
166 views
PHP string constants overuse?
I have two particular cases where I disagree with a coworker, whether constants should be used or not.
We use a homemade framework working roughly like Symfony 1.x.
Initial code was, in a routing ...
7
votes
1answer
98 views
How to make PHP undefined constants notice an error
I just spent hours trying to debug an out of memory error caused by the following code:
for ($i = 1; i <= 4; $i++) {
$allowed[] = $type.'_'.$i;
}
Which PHP kindly mangles into:
for ($i = 1; ...
7
votes
2answers
853 views
phpDoc class constants documentation
which is the correct way to document class constants for phpDoc? I've read the manual but i can't find anything about them
7
votes
4answers
820 views
Can I use string concatenation to define a class CONST in PHP?
I know that you can create global constants in terms of each other using string concatenation:
define('FOO', 'foo');
define('BAR', FOO.'bar');
echo BAR;
will print 'foobar'.
However, I'm getting ...
5
votes
3answers
34 views
Concatenating __DIR__ constant with a string as an array value which is a class member in PHP
Can anyone tell me why this doesn't work?
It's just a crude example of what I'm trying to do somewhere else.
class Thing {
private $stuff = array(
'key' => __DIR__ . 'value'
);
...
5
votes
5answers
239 views
Accessing defined variable inside <<<HTML in php
I'm trying to figure out how to use a defined variable when using <<<HTML in php.
This is an example of what I want to achieve:
<?php
define('TEST','This is a test');
echo ...
5
votes
3answers
638 views
Where to store application constants in Zend?
I have a few constants that I'll need to define for my application, for example, SITE_KEY which would contain a random key for salt passwords.
I'm not sure where I should define those, though. I ...
5
votes
1answer
100 views
How do you syncronize enums in DB with your PHP code?
A db with several hundred tables will usually have more then few enums/sets defined in it.
How do you synchronize you PHP code with the enum values, to avoid using string literals in your code (which ...
5
votes
7answers
324 views
Does Perl have something similar to PHP's constant()?
I have done some digging through perldoc and the O'Reilly books but haven't found any way to do this. Am I relegated to using something like Readonly?
UPDATE:
I have nothing against Readonly. I ...
5
votes
6answers
4k views
PHP Constants: Advantages/Disadvantages
Lately I've been in the habit of assigning integer values to constants and simply using the constant name as a means of identifying its purpose. However, in some cases this has resulted in the need to ...
4
votes
4answers
134 views
Which is faster? Constants, Variables or Variable Arrays
My current web application uses about 30 or so Contants (DEFINE()). I am reading things that variables are quicker. Provided that there is a naming convention to avoid variable overwrites, the only ...
4
votes
1answer
765 views
Dynamic constant name in PHP
I am trying to create a constant name dynamically and then get at the value.
define( CONSTANT_1 , "Some value" ) ;
// try to use it dynamically ...
$constant_number = 1 ;
$constant_name = ...
4
votes
3answers
556 views
Using global variables in CakePHP Shell scripts
Using CakePHP's shell scripts I'm having problems accessing constants, which I normally set within config/bootstrap.php.
Is this because using shell scripts I'm not going through the normal ...
4
votes
3answers
231 views
constants and mysql, best practices
I currently have a list of defined constants and a function that regex'es every pulled MySQL string and looks for things like CLIENT_NAME, LOCAL_API_ADDRESS and auto-changes it.
// several fields
...
4
votes
2answers
1k views
PHP class constant string variable spanning over multiple lines
I want to have a string variable for a PHP class, which would be available to all methods.
However, this variable is quite long, so I want to separate it into multiple lines.
For example,
...
4
votes
2answers
508 views
PHP, SPL predefined constants
where can i get some references about SPL predefined constants like SELF_FIRST,CHILD_FIRST ? on php.net i don't get much(just their type).
4
votes
3answers
1k views
What is the correct way to document PHP constants (define) with phpDocumentor
How must we document (with phpDocumentor) constants defined with define() in PHP?
I found nothing in the docs, but found the following example (which I don't see it's use) in the sample2.php:
/**#@+
...
4
votes
3answers
1k views
How to get name of the constant?
Assuming you have a constant defined in a class:
class Foo {
const ERR_SOME_CONST = 6001;
function bar() {
$x = 6001;
// need to get 'ERR_SOME_CONST'
}
}
Is it possible ...
4
votes
2answers
446 views
PHP security question: store connection details in constants or private properties?
The title should say it all really - I was wondering if it's better to store connection variables as constants (because they can't be changed) or as private properties (because they can't be viewed). ...
3
votes
1answer
241 views
Constants in Doctrine 2 entities
Suppose i'm having the following Doctrine 2 entity:
/**
* @ORM\Entity
* @ORM\Table(name="users")
*/
class User {
/**
* @ORM\Id
* @ORM\Column(type="integer")
* ...
3
votes
6answers
1k views
PHP Undefined Constant PHP_ROUND_HALF_DOWN
I have some PHP code in a project I'm working on that uses PHP's round function. On my localhost, I don't include any quotes around my mode argument, stating it as just PHP_ROUND_HALF_DOWN. However, ...
3
votes
2answers
159 views
Visibility of object constants
I found out that object constants in PHP always have public visibility so it is not possible to set them to protected or private like this:
<?php
class MyClass {
protected const constant = ...
3
votes
2answers
205 views
PHP - Using a constant's value to reference a data member
I am trying to access one class object's data member by using a constant. I was wondering if this is possible with a syntax similar to what I am using?
When I attempt to do this in the following ...
3
votes
3answers
84 views
variable or constant?
Is there a benefit of using one over the other ?
$lang = isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'en';
# OR
define("LANG" , isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'en');
Thanks
3
votes
1answer
168 views
PHP constant string square bracket indexing
I'm trying to get a constant string and index it as if it was an array of characters (square bracket syntax). When I try this code it fails on the last line.
define( ...
3
votes
2answers
687 views
Common constants file for PHP and JavaScript
How do guys suggest to share a constants file between PHP and JavaScript, in order not to repeat code? XML file? I am assuming mixing up javascipt inside PHP would not be the right solution!? Thanks
3
votes
7answers
452 views
Single-letter prefix for PHP class constants?
I've noticed many (all?) PHP constants have a single-letter prefix, like E_NOTICE, T_STRING, etc. When defining a set of class constants that work in conjunction with one another, do you prefer to ...
3
votes
2answers
221 views
Why won't this work in PHP?
$constPrefix = '_CONST_';
if (strstr($content, $constPrefix)) {
$constants = array('PHP_VERSION', '__FILE__');
foreach($constants as $constant) {
$constantOutput = eval($constant);
...
3
votes
3answers
1k views
PHP Zend Framework - Zend_Config and global state
I'm in the process of evaluating the benefits of Zend_Config_Ini versus using a simple constant file.
e.g. -
define('DB_HOST',localhost);
//versus
$config = new ...
2
votes
1answer
38 views
Access substring of class constant with array index operator
class Foo {
const BAR = 'Hello';
}
echo Foo::BAR; //Works
echo Foo::BAR[0]; //Parse error: syntax error, unexpected '[', expecting ',' or ';'
I've found a way around this by using substr, but I'm ...
2
votes
1answer
55 views
PHP: define() class scoped constants
I am building a class that turns a flatfile into a virtual database, I am trying to take the values of an array as the column names instead of indexes when retrieving data like so...
$db = new ...
2
votes
2answers
31 views
Is it possible to get the magic constants of the caller context in php?
I'd like to create a debug function that dumps information about the execution context along with some debug information.
In debug.php I have a dump function that dumps whatever is passed as a ...
2
votes
5answers
95 views
PHP: define constants outside a class or in the constructor?
i'm new to classes and oo.
I was looking for a basic MySQL class to start with, and i found "A Simple MySQL Class" by Matthew Saragusa.
These are the first lines:
define('SIMPLE_DB_SERVER', ...
2
votes
1answer
43 views
Calling a class's constant in another class's variable
I was wondering if there is any possibility in PHP to do following;
<?php
class boo {
static public $myVariable;
public function __construct ($variable) {
self::$myVariable = $variable;
}
...
2
votes
4answers
32 views
Checking for undefined constants
I've seen a lot of people using
defined('XXX') or define('XXX', 'XXX');
instead of
if(!defined('XXX')){
define('XXX', 'XXX');
}
Does the first code do exactly the same thing? Why do people use ...
2
votes
2answers
361 views
Is it possible to redefine PHP constants?
Is it possible to redefine class constants (in PHP)?
e.g.
class B {
const C_ThisIsAConstant = 1;
}
class A extends B {
self::C_ThisIsAConstant = 2;
}
2
votes
4answers
168 views
Why does empty expect T_PAAMAYIM_NEKUDOTAYIM when a non-variable is given?
<?php
define('foo', 'bar');
if (empty(foo)) {
echo 'qux';
}
http://codepad.org/G1TSK1c6
Parse error: syntax error, unexpected ')', expecting T_PAAMAYIM_NEKUDOTAYIM on line 4
I know that ...
2
votes
2answers
296 views
What is the most “elegant” way to define a global constant array in PHP
I was wondering what do you think would be the best and cleanest way to define a contant array varible similar to the way define function works. I've seen a lot of people asking this question in ...
2
votes
1answer
310 views
get all class constants
Is there a way to do get all the constants in a php class. Tried get_class_vars( get_called_class() )
class Status
{
const PUBLISHED = "published";
const DRAFT = "draft";
...
2
votes
6answers
182 views
Can you use static constants in PHP?
I expected the following to work but it doesn't seem to.
<?php
class Patterns
{
public static const EMAIL = "/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix";
public ...
2
votes
2answers
36 views
Associating a Function to Fire on session_start()?
I've searched the web but haven't been able to find a solution to the following challenge:
I'd like to somehow associate a function that executes when session_start is called independent of the page ...
2
votes
3answers
1k views
PHP How to access constant defined outside class?
I have defined some constants eg:
define('DB_HOSTNAME', 'localhost', true);
define('DB_USERNAME', 'root', true);
define('DB_PASSWORD', 'root', true);
define('DB_DATABASE', 'authtest', true);
now ...
2
votes
3answers
280 views
PHP OOP properity constant usage
I'm really new to OOP. I'm even not a newbie - I'm noob. So. I want to transfer my pseudo-CMS from "normal" programming, into OOP programming system. And so:
private static $dsn = ...
2
votes
3answers
85 views
how can I get around no arrays as class constants in php?
I have a class with a static method. There is an array to check that a string argument passed is a member of a set. But, with the static method, I can't reference the class property in an ...
2
votes
4answers
694 views
define constant in php
how do I define a constant inside a function
eg.
class {
public test;
function tester{
const test = "abc";
}
}
2
votes
4answers
936 views
Variables versus constants versus associative arrays in PHP
I'm working on a small project, and need to implement internationalization support somehow. I am thinking along the lines of using constants to define a lot of symbols for text in one file, which ...