本文整理汇总了PHP中JDocument::setMimeEncoding方法的典型用法代码示例。如果您正苦于以下问题:PHP JDocument::setMimeEncoding方法的具体用法?PHP JDocument::setMimeEncoding怎么用?PHP JDocument::setMimeEncoding使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JDocument
的用法示例。
在下文中一共展示了JDocument::setMimeEncoding方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetMimeEncoding
/**
* Test...
*
* @return void
*/
public function testGetMimeEncoding()
{
$this->object->setMimeEncoding('image');
$this->assertEquals('image', $this->object->getMimeEncoding(), 'getMimeEncoding should be image');
$this->object->setMimeEncoding('zip');
$this->assertEquals('zip', $this->object->getMimeEncoding(), 'getMimeEncoding should be zip');
}
示例2: testRender
/**
* @todo Implement testRender().
*/
public function testRender()
{
$this->object = new JDocument();
$this->object->render();
$headers = JResponse::getHeaders();
$lastMod = false;
$contentType = false;
foreach ($headers as $header) {
if ($header['name'] == 'Last-Modified') {
$lastMod = $header;
}
if ($header['name'] == 'Content-Type') {
$contentType = $header;
}
}
$this->assertThat($lastMod, $this->equalTo(false));
$this->assertThat($contentType['value'], $this->equalTo('; charset=utf-8'));
$this->object->setModifiedDate('My date');
$this->object->setMimeEncoding('MyMimeType');
$this->object->setCharset('MyCharset');
$this->object->render();
$headers = JResponse::getHeaders();
$lastMod = false;
$contentType = false;
foreach ($headers as $header) {
if ($header['name'] == 'Last-Modified') {
$lastMod = $header;
}
if ($header['name'] == 'Content-Type') {
$contentType = $header;
}
}
$this->assertThat($lastMod['value'], $this->equalTo('My date'));
$this->assertThat($contentType['value'], $this->equalTo('mymimetype; charset=MyCharset'));
}
示例3: testEnsureSetMimeEncodingReturnsThisObject
/**
* @testdox Test that setMimeEncoding returns an instance of $this
*/
public function testEnsureSetMimeEncodingReturnsThisObject()
{
$this->assertSame($this->object, $this->object->setMimeEncoding('application/json'));
}