0
votes
0answers
6 views

Doctrine2 getRepository and the use operator

I am trying to clean up a little bit of code and am having some trouble. I have a few entities that I am using over and over again in a routing file. For example: $categories = ...
0
votes
1answer
16 views

PHP Namespace Questions

Hey I am new to php namespaces and I'm trying to make sense of something. I am following the PRO Php MVC e-book and they use a lot of namespace examples in there code. What's confusing me is the ...
0
votes
1answer
27 views

Call class from different namespace

I have two classes, Router and Sammy, both are in different namespaces, but i need to call Sammy class in Router class, but it gives me an error Notice: Undefined index: ...
0
votes
1answer
21 views

Exempt one or more class by a Namespace autoloader

I am using in a project phpQuery for parsing HTML and Doctrine2 for DB persistence. Doctrine 2 uses an autoloader strategy based on namespaces, so f.e. when calling a \Doctrine\Orm\EntityManager it ...
-1
votes
2answers
25 views

Are PHP namespaces used with a leading slash [closed]

When using PHP namespaces, do you use them like: \Foo\Bar->method() or Foo\Bar->method() Notice the difference is only a leading slash. Or are both valid, and mean different things? ...
0
votes
1answer
23 views

PHP issues with namespaces and singletons

Hey guys I'm having an issue that I think is because due to namespaces, I have my parent class TheParent where I do some stuff, add it to $this then extend to a child class expecting that $this will ...
2
votes
0answers
18 views

MediaWiki custom page

I've got a MediaWiki site and I would like to add a tab with a very simple "read article" functionality (without any edit/comment options). I followed the manual and tried to create a namespace for ...
0
votes
1answer
65 views

Composer packages, autoloading non-class based files

When I was digging into the source of a Composer package on github I noticed that there were php files that matched namespace names but were preceded with an underscore. Puzzled I pulled the package ...
0
votes
1answer
112 views

Class alias conflict Laravel 4

Currently I'm using Laravel 4 for a project. I have a model called "Event" it is conflicting with an event alias defined in the file: app/config/app.php in the class aliases array "Event" appears ...
0
votes
1answer
39 views

PHP use statement failing

I wanted to try out the FlawkApi library and copied the sample page for Steam accounts. PHP is generating an error however: Fatal error: Class 'FlawkApi\Services\Steam' not found in ...
2
votes
2answers
80 views

How to get SVG tag content with PHP [duplicate]

I would like to get SVG tag content with PHP. test.svg: <?xml version="1.0" encoding="utf-8"?> <!-- comment --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" ...
2
votes
1answer
30 views

PhP name space on identical configurations

I have an uncommon problem with my development machine. She is the same we use on the production server, but for some reason when i run on my vm somthing like namespace NotWorking; $foo = new ...
0
votes
0answers
20 views

How to namespace WanWizard datamapper models

We are looking at using the DataMapper ORM from wanwizard in our project, But something we want is to be able to namespace our models. So we can do something like //file one namespace ...
1
vote
1answer
143 views

How do I namespace a model in Laravel so as not to clash with an existing class?

In Laravel 4 I want to use a model that represents an Event coming from my database. Thus, in app/models I have my Event model that extends Eloquent. However, Laravel 4 already has an Event class ...
1
vote
1answer
66 views

Use namespace alias in twig

I have a code that checks some entity constant in a twig template: {% if logRecord.status is constant('App\\DealBundle\\Entity\\Deal::DEAL_STATE_MONEY_RESERVED') %} Bug it is so embarrassing to use ...
0
votes
1answer
19 views

PHP Namespaces autoload

I have the following directory structure: /var/www/Project1/Project1.php /var/www/Project1/User/UserProfile.php Inside Project1.php: <?php namespace Project1; set_include_path( __DIR__ ); ...
0
votes
1answer
25 views

What files did the autoloader try to load?

I have a filestructure: /app/base/myfile.php <?php namespace Base; spl_autoload_extensions(".php"); spl_autoload_register(); $myclass = new MyClass; /app/base/MyClass.php <?php namespace ...
0
votes
1answer
32 views

Doctrine2 cannot load class with namespace through relationship

I've got 2 entities; BusinessContactInformation and ContactInformationTypes. One entity of BusinessContactInformation is always of a given ContactInformationType. However, when I try to load an ...
-2
votes
1answer
58 views

PHP - how to get a variable's name? [duplicate]

I want to make a little function for debugging purposes, that prints the contents of the variable in a human readable format. The function is based on the pr() shortcut found in CakePHP framework, ...
0
votes
1answer
23 views

Accessing class method without calling the class into a variable php

Is it possible to use a classes methods without actually calling the class into a variable. I am sure i have seen this somewhere but i'm not sure if i was dreaming. Take this example: <?php ...
2
votes
1answer
103 views

Is there a namespace aware alternative to PHP's class_exists()?

If you try using class_exists() inside a method of a class in PHP you have to specify the full name of the class--the current namespace is not respected. For example if my class is: <? ...
0
votes
0answers
58 views

PHP SoapServer and namespaces

How to add xmns="http://tempuri.org" to RegisterResponse? I have tried many things, the ideal is SoapVar with SOAP_ENC_OBJECT parameter, but I can't get rid of xsi:type... (even if i set it to null it ...
1
vote
2answers
164 views

Multiple namespaces under same module in ZF2

I'm having trouble configuring multiple namespaces/classes under same module. For example, I have a module called "Account", in which I'd like to include all account related classes (companies: ...
2
votes
2answers
178 views

'Class not found' when using namespaces in PHPUnit

I'm new to PHPUnit and am having some trouble setting it up to access my PHP files. The directory structure I'm using for my app is this: ./phpunit.xml ./lib/Application/ -> Dir1/File1.php ...
2
votes
1answer
59 views

PHP - get defined constants for a given namespace

I have a set of classes for data storage. It currently have a working connector for Google Drive, Dropbox, Box, FTP and local connection. I have designed this to construct a file manager where a ...
1
vote
2answers
423 views

Autoloading classes in PHPUnit using Composer and autoload.php

I have just installed PHPUnit version 3.7.19 by Sebastian Bergmann via Composer and have written a class I would like to unit test. I would like to have all my classes autoloaded into each unit test ...
0
votes
2answers
76 views

PHP Front Controller Class Not Found (Namespaces)

The following PHP code public function go() { $controller = ucfirst($this->getController()); $method = $this->getAction(); require_once VENDOR_PATH . DS . ...
0
votes
1answer
28 views

php namespace alias and the choice of words for directories - can we name a directory as global?

I am having more trouble with namespacing when comes to the choice of words after this question I made earlier, use \global\Conan as Cimmerian; error message, Parse error: syntax error, ...
2
votes
2answers
86 views

Does PHP namespace autoloading have to use folders?

I am quite confused in implementing namespace in php, especially when it comes to alias - importing classes. I have followed the tutorial from this tutorial: Leveraging PHP V5.3 namespaces for ...
0
votes
2answers
44 views

SimpleXML Accessing Elements - PHP

I am trying to get inside of <err:Errors> located in the SOAP below. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header/> ...
0
votes
1answer
36 views

Loading a Parent Class in Symfony 2

I've set up a test parent class in my Symfony 2 controller as follows: <?php namespace Zetcho\AmColAnBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; class ...
0
votes
1answer
71 views

remove Name-Space from xml file and save as new XML

this is my link to getting XML File:-XML LINK this is my code:- <?php function convertNodeValueChars($node) { if ($node->hasChildNodes()) { foreach ($node->childNodes as ...
0
votes
1answer
33 views

PHP Namespace confusion - keyword v constant

I'm learning about php namespaces just now and am stumped as to what the difference is between the namespace keyword and the namespace constant: __NAMESPACE__ namespace All the examples on php.net ...
0
votes
1answer
52 views

SimpleXML Parsing Nested Namespaces - PHP

I am having a small problem parsing the tags in the nested namespace called "q0:", located below. //Tag that I am trying to parse <q0:CustomerTransactionId> I am able to get to all of the ...
2
votes
2answers
130 views

How to automatic load files needed by a namespace? (new title)

I have two files as described below: Path: index.php <?php // Composer autload require_once 'vendor/autoload.php'; //The commented code below works: //$loader = new Twig_Loader_String(); //$twig ...
0
votes
1answer
18 views

How to access a class in a different namespace from another non namespaced class

I have a class, that doesn't have a namespace.... I have another class that does have a name space... If I try to access the namespaced class from the non namespace, it can't find it. How do I tell my ...
1
vote
1answer
208 views

Laravel class autoloading for bundles

I'm having a bit of trouble with autoloader configuration for a bundle I'm writing. I have the following classes: Ravenly\Models\RavenUser in models/raven_user.php Ravenly\Ravenly in ravenly.php ...
0
votes
0answers
44 views

PHP: spl_autoload_register() with namespace structure that matches folder structure below root

I know how to use autoload for folder structures above the root directory that match the namespaceing structure: folder: \name\space\test\ has file Hello.php that defines class ...
0
votes
3answers
80 views

PHP Namespaces with or without curly braces [closed]

What is the difference/advantage/disadvantage in PHP to write namespaces in two variants? Which one is recommended and why? Thanks namespace foo/bar; class Any{} //------- namespace foo/bar { ...
1
vote
4answers
43 views

why doesn't it find the class when it finds the script?

There is some weird thing going on. Following is a snippet from view_reminders.php : <?php namespace reminder; require_once('./reusable/reminders.php'); ?> some HTML... <?php ...
0
votes
1answer
38 views

class namespace in older PHP versions [duplicate]

I really would like to adopt namespaces into my workflow. As i understand it PHP 5.3.0+ supports this. Is there a way to replicate PHP namespace for older versions of PHP?
2
votes
3answers
1k views

Using namespaces in Laravel 4

I'm new to Laravel and using PHP namespaces in general. I didn't run into any problems until I decided to make a model named File. How would I go about namespacing correctly so I can use my File model ...
4
votes
1answer
811 views

Php namespaces and use

I am having a little trouble with namespaces and the use statements. I have three files: path/to/Shape/ShapeInterface.php path/to/Shape/Shape.php and path/to/Shape/Circle.php I am trying to do this ...
1
vote
1answer
197 views

Using SPLFixedArray in namespace

I have a namespace declared as such: namespace MySpace { $array = new SPLFixedArray(); } Error I get is: Fatal error: Class 'MySpace\SplFixedArray' not found in ...
2
votes
2answers
2k views

Troubleshooting “The use statement with non-compound name … has no effect”

Getting this error when I put use Blog; at the top. Warning: The use statement with non-compound name 'Blog' has no effect in... Blog is my namespace in which I have 3 classes: Article, List ...
9
votes
2answers
578 views

Expanding PHP namespace alias to full namespace string

I was wondering if there is a way to expand an aliased PHP namespace token to get the full namespace identifier. The purpose of doing so is that our object creation factory expects a string with the ...
8
votes
1answer
2k views

Instantiating class by string using PHP 5.3 namespaces

I can't get around an issue instantiating a new class by using a string variable and PHP 5.3. namespaces. For example, this works; $class = 'Reflection'; $object = new $class(); However, this does ...
0
votes
1answer
290 views

PHP: Accessing namespaced XML with SimpleXML

I'm using simplexml() function to parse through RSS feed, while i can access $var->title to <title> how do I access <dcterms:issued>? Feed excerpt (http://pastebin.com/nN8G78AH): ...
3
votes
2answers
2k views

PHP namespace simplexml problems

Evening guys. Firstly to say, I have read How do I parse XML containing custom namespaces using SimpleXML?. I'm parsing an XML document from a source not mind, and they use a custom namespace. ...
9
votes
4answers
2k views

Is there a well-established naming convention for PHP namespaces?

So far, I've seen many different naming conventions used for PHP namespaces. Some people use PascalCase\Just\Like\For\Classes, some use underscored\lower_case\names, some even use the Java convention ...

1 2 3 4 5 11