Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
Getting the File Path to the Vendor Folder
Posted on 06/08/2009 at 04:47 pm by Kevin Wentworth
Viewed 14,321 times | 0 comments
I'm trying to use a library within my CakePHP application that needs a variable defined that contains the complete file path to the vendors folder. This can be solved one of two ways- modify the library (which I don't want to do) or use the Configure::corePaths() function in CakePHP.
Best Option - using Configure::corePaths()
This is a great function I had not used until today. If you call it with no parameters, you'll get all of the file paths that Cake will look in when "building" your application. I just needed the vendor folder path, so I did:
- <?php
- $vendorFilePath = Configure::corePaths('vendor');
- ?>
Another Option - inspired by CakePHP code
Modify the library I'm using to know where it is... this is how CakePHP tries to find the app folder and web root by default. I like the way the Cake developers think. This will also work (to get where the current file is saved):
- <?php
- ?>
Great little trick to determine CakePHP include paths. Scalable and automagic. Just the way I like it!
Cheers,
-Kevin Wentworth
Tags for Getting the File Path to the Vendor Folder
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!