目前我正在尝试将环境变量设置为指向目录,但我需要它是动态的。
目前我有以下
SetEnv WP_DIR /home/user101/website/public_html/www/app
是否可以使WP_DIR变量动态获取/home/user101/website/public_html/www
部分?
类似的东西:
SetEnv WP_DIR ${CURRENT_PATH}/app
请记住,我对此很陌生。
答案 0 :(得分:1)
您可以使用PassEnv
directive将env变量从系统传递到Apache:
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
using namespace cv;
using namespace std;
/// Global variables
char* source_window = "Source image";
char* warp_window = "Warp";
char* warp_rotate_window = "Warp + Rotate";
/** @function main */
int main( int argc, char** argv )
{
Point2f srcTri[3];
Point2f dstTri[3];
Mat rot_mat( 2, 3, CV_32FC1 );
Mat warp_mat( 2, 3, CV_32FC1 );
Mat src, warp_dst, warp_rotate_dst;
/// Load the image
src = imread( argv[1], 1 );
/// Set the dst image the same type and size as src
warp_dst = Mat::zeros( src.rows, src.cols, src.type() );
/// Set your 3 points to calculate the Affine Transform
srcTri[0] = Point2f( 0,0 );
srcTri[1] = Point2f( src.cols - 1, 0 );
srcTri[2] = Point2f( 0, src.rows - 1 );
dstTri[0] = Point2f( src.cols*0.0, src.rows*0.33 );
dstTri[1] = Point2f( src.cols*0.85, src.rows*0.25 );
dstTri[2] = Point2f( src.cols*0.15, src.rows*0.7 );
/// Get the Affine Transform
warp_mat = getAffineTransform( srcTri, dstTri );
/// Apply the Affine Transform just found to the src image
warpAffine( src, warp_dst, warp_mat, warp_dst.size() );
/** Rotating the image after Warp */
/// Compute a rotation matrix with respect to the center of the image
Point center = Point( warp_dst.cols/2, warp_dst.rows/2 );
double angle = -50.0;
double scale = 0.6;
/// Get the rotation matrix with the specifications above
rot_mat = getRotationMatrix2D( center, angle, scale );
/// Rotate the warped image
warpAffine( warp_dst, warp_rotate_dst, rot_mat, warp_dst.size() );
/// Show what you got
namedWindow( source_window, CV_WINDOW_AUTOSIZE );
imshow( source_window, src );
namedWindow( warp_window, CV_WINDOW_AUTOSIZE );
imshow( warp_window, warp_dst );
namedWindow( warp_rotate_window, CV_WINDOW_AUTOSIZE );
imshow( warp_rotate_window, warp_rotate_dst );
/// Wait until user exits the program
waitKey(0);
return 0;
}
答案 1 :(得分:1)
SetEnv
无法处理动态数据作为其值。但是mod_rewrite可以为你处理这个问题。据我所知,没有ENV变量,它包含目录的当前绝对路径。但是你可以写一些想要抓住它的东西:
RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*?)/?\1$
RewriteRule ^.*$ - [E=WP_DIR:%{DOCUMENT_ROOT}%2/app]
但是,从.htaccess设置ENV变量并不那么可靠,因为如果URL被重写,它们可以以REDIRECT_
为前缀。你必须留意来自PHP的REDIRECT_
前缀变量。
如果你必须首先做这种事情,我认为你的代码错了,PHP有能力处理这种逻辑。
如果您正在尝试将请求重写为index.php
并解决.htaccess的问题,那么当您想要从.htaccess for PHP设置ENV变量时,它会在您的变量名称前添加REDIRECT_
,我强烈建议不首先使用ENV变量。一种方法是RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]
。但我不喜欢这种丑陋的方法,因为它使用了查询字符串。我发现的最好的方法是简单地将您的请求重写为index.php
然后从PHP中读取strtok($_SERVER["REQUEST_URI"],'?')
将包含用户请求的请求而不包含查询字符串。您仍然会参考$_GET[...]
来获取此类参数。